diff --git a/brian_polling_manager/__init__.py b/brian_polling_manager/__init__.py
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..d3dbc19f3741c5d05983ac8f9878a570c22d5247 100644
--- a/brian_polling_manager/__init__.py
+++ b/brian_polling_manager/__init__.py
@@ -0,0 +1,37 @@
+"""
+automatically invoked app factory
+"""
+import logging
+import os
+
+from flask import Flask
+
+from brian_polling_manager import configuration
+
+CONFIG_KEY = 'CONFIG_PARAMS'
+SESSION_SECRET = 'super-secret'
+
+
+def create_app():
+    """
+    overrides default settings with those found
+    in the file read from env var CONFIG_FILENAME
+
+    :return: a new flask app instance
+    """
+
+    app = Flask(__name__)
+    app.secret_key = SESSION_SECRET
+
+    if 'CONFIG_FILENAME' in os.environ:
+        with open(os.environ['CONFIG_FILENAME']) as f:
+            app.config[CONFIG_KEY] = configuration.load_config(f)
+    else:
+        # this inits with the defaults
+        app.config[CONFIG_KEY] = configuration.load_config()
+
+    from brian_polling_manager import api
+    app.register_blueprint(api.routes, url_prefix='/api')
+
+    logging.info('Flask app initialized')
+    return app
diff --git a/brian_polling_manager/api.py b/brian_polling_manager/api.py
new file mode 100644
index 0000000000000000000000000000000000000000..424813f44665e73976f4681cf2b570d6d083c212
--- /dev/null
+++ b/brian_polling_manager/api.py
@@ -0,0 +1,163 @@
+"""
+These endpoints are used to update BRIAN snmp polling checks to Sensu
+
+.. contents:: :local:
+
+
+/api/version
+---------------------
+
+.. autofunction:: brian_polling_manager.api.version
+
+
+/api/update
+-----------------------------
+
+.. autofunction:: brian_polling_manager.api.update
+
+"""
+import functools
+import logging
+import pkg_resources
+
+from flask import Blueprint, current_app, request, Response, jsonify
+
+from brian_polling_manager import CONFIG_KEY
+from brian_polling_manager import main
+
+routes = Blueprint("api-routes", __name__)
+logger = logging.getLogger(__name__)
+
+
+API_VERSION = '0.1'
+
+VERSION_SCHEMA = {
+    '$schema': 'http://json-schema.org/draft-07/schema#',
+
+    'definitions': {
+        'latch': {
+            'type': 'object',
+            'properties': {
+                'current': {'type': 'integer'},
+                'next': {'type': 'integer'},
+                'this': {'type': 'integer'},
+                'failure': {'type': 'boolean'},
+                'pending': {'type': 'boolean'},
+                'timestamp': {'type': 'number'}
+            },
+            'required': ['current', 'next', 'this', 'pending', 'failure'],
+            'additionalProperties': False
+        }
+    },
+
+    'type': 'object',
+    'properties': {
+        'api': {
+            'type': 'string',
+            'pattern': r'\d+\.\d+'
+        },
+        'module': {
+            'type': 'string',
+            'pattern': r'\d+\.\d+'
+        },
+        'latch': {'$ref': '#/definitions/latch'}
+    },
+    'required': ['api', 'module'],
+    'additionalProperties': False
+}
+
+
+class APIUpstreamError(Exception):
+    def __init__(self, message, status_code=504):
+        super().__init__()
+        self.message = message
+        self.status_code = status_code
+
+
+@routes.errorhandler(APIUpstreamError)
+def handle_request_error(error):
+    logger.error(f'api error: {error.message}')
+    return Response(
+        response=error.message,
+        status=error.status_code,
+        mimetype='text/html')
+
+
+def require_accepts_json(f):
+    """
+    used as a route handler decorator to return an error
+    unless the request allows responses with type "application/json"
+    :param f: the function to be decorated
+    :return: the decorated function
+    """
+    @functools.wraps(f)
+    def decorated_function(*args, **kwargs):
+        # TODO: use best_match to disallow */* ...?
+        if not request.accept_mimetypes.accept_json:
+            return Response(
+                response="response will be json",
+                status=406,
+                mimetype="text/html")
+        return f(*args, **kwargs)
+    return decorated_function
+
+
+@routes.after_request
+def after_request(response):
+    """
+    Generic function to do additional logging of requests & responses.
+
+    :param response:
+    :return:
+    """
+    if response.status_code != 200:
+
+        try:
+            data = response.data.decode('utf-8')
+        except Exception:
+            # never expected to happen, but we don't want any failures here
+            logging.exception('INTERNAL DECODING ERROR')
+            data = 'decoding error (see logs)'
+
+        logger.warning(
+            f'[{response.status_code}] {request.method} {request.path} {data}')
+    else:
+        logger.info(
+            f'[{response.status_code}] {request.method} {request.path}')
+    return response
+
+
+@routes.route('/version', methods=['GET', 'POST'])
+@require_accepts_json
+def version():
+    """
+    Returns a json object with information about the module version.
+
+    The response will be formatted according to the following schema:
+
+    .. asjson:: brian_polling_manager.api.VERSION_SCHEMA
+
+    :return:
+    """
+    version_params = {
+        'api': API_VERSION,
+        'module':
+            pkg_resources.get_distribution('brian_polling_manager').version
+    }
+    return jsonify(version_params)
+
+
+@routes.route('/update', methods=['GET', 'POST'])
+@require_accepts_json
+def update():
+    """
+    Update checks based on current inventory provider state.
+
+    The response will be formatted according to the following schema:
+
+    .. asjson:: brian_polling_manager.main.REFRESH_RESULT_SCHEMA
+
+    :return:
+    """
+    response = main.refresh(config=current_app.config[CONFIG_KEY])
+    return jsonify(response)
diff --git a/brian_polling_manager/app.py b/brian_polling_manager/app.py
new file mode 100644
index 0000000000000000000000000000000000000000..9c442c7bdc4bf0cda16b528aee2bf7364391b77d
--- /dev/null
+++ b/brian_polling_manager/app.py
@@ -0,0 +1,10 @@
+"""
+default app creation
+"""
+import brian_polling_manager
+from brian_polling_manager import configuration
+
+app = brian_polling_manager.create_app()
+
+if __name__ == "__main__":
+    app.run(host="::", port="7878")
diff --git a/brian_polling_manager/cli.py b/brian_polling_manager/configuration.py
similarity index 72%
rename from brian_polling_manager/cli.py
rename to brian_polling_manager/configuration.py
index f78df640d949a04d4e4a9e10f5a00d24db7e327e..bbb136dd4601b54c3863813d80a39eb4b2463f6d 100644
--- a/brian_polling_manager/cli.py
+++ b/brian_polling_manager/configuration.py
@@ -1,40 +1,19 @@
-"""
-This script queries Inventory Provider for changes
-and configures Sensu with the snmp polling checks
-required by BRIAN.
-
-.. code-block:: console
-
-    % brian-polling-manager --help
-    Usage: brian-polling-manager [OPTIONS]
-
-      Update BRIAN snmp checks based on Inventory Provider data.
-
-    Options:
-      --config TEXT         configuration filename
-      --force / --no-force  update even if inventory hasn't been updated
-      --help                Show this message and exit.
-
-The required configuration file must be
-formatted according to the following schema:
-
-.. asjson::
-    brian_polling_manager.cli.CONFIG_SCHEMA
-
-"""
 import json
 import logging
+import logging.config
 import os
 from typing import Union
 
-import click
 import jsonschema
-from statsd import StatsClient
 
-from brian_polling_manager import inventory, interfaces, environment
+from brian_polling_manager import inventory
 
 logger = logging.getLogger(__name__)
 
+_DEFAULT_LOGGING_FILENAME = os.path.join(
+    os.path.dirname(__file__),
+    'logging_default_config.json')
+
 _DEFAULT_CONFIG = {
     'inventory': [
         'http://test-inventory-provider01.geant.org:8080',
@@ -61,7 +40,7 @@ _DEFAULT_CONFIG = {
         }
     },
     'statedir': '/tmp/',
-    'logging': environment.DEFAULT_LOGGING_FILENAME,
+    'logging': _DEFAULT_LOGGING_FILENAME,
     'statsd': {
         'hostname': 'localhost',
         'port': 8125,
@@ -205,66 +184,41 @@ class State(object):
             f.write(json.dumps(new_interfaces))
 
 
-def _validate_config(ctx, param, file):
+def _setup_logging(filename=None):
     """
-    loads, validates and returns configuration parameters
+    set up logging using the configured filename
 
-    :param ctx:
-    :param param:
-    :param value: filename (string)
-    :return: a dict containing configuration parameters
+    :raises: json.JSONDecodeError, OSError, AttributeError,
+        ValueError, TypeError, ImportError
     """
-    if file is None:
-        config = _DEFAULT_CONFIG
-    else:
-        try:
-            config = json.loads(file.read())
-        except (json.JSONDecodeError, jsonschema.ValidationError) as e:
-            raise click.BadParameter(str(e))
+    if not filename:
+        filename = _DEFAULT_LOGGING_FILENAME
 
-    try:
-        jsonschema.validate(config, CONFIG_SCHEMA)
-    except jsonschema.ValidationError as e:
-        raise click.BadParameter(str(e))
-
-    environment.setup_logging(config.get('logging', None))
-
-    return config
+    with open(filename) as f:
+        # TODO: this mac workaround should be removed ...
+        d = json.loads(f.read())
+        import platform
+        if platform.system() == 'Darwin':
+            d['handlers']['syslog_handler']['address'] = '/var/run/syslog'
+        logging.config.dictConfig(d)
+        # logging.config.dictConfig(json.loads(f.read()))
 
 
-@click.command()
-@click.option(
-    '--config',
-    default=None,
-    type=click.File('r'),
-    callback=_validate_config,
-    help='configuration filename')
-@click.option(
-    '--force/--no-force',
-    default=False,
-    help="refresh inventory data even if it hasn't been updated")
-def main(config, force):
+def load_config(file=None):
     """
-    Update BRIAN snmp checks based on Inventory Provider data.
-    """
-
-    state = State(config['statedir'])
-    last = inventory.last_update_timestamp(config['inventory'])
-    if force or not last or last != state.last:
-        state.last = last
-        state.interfaces = inventory.load_interfaces(config['inventory'])
+    loads, validates and returns configuration parameters
 
-    statsd_config = config.get('statsd', None)
-    if statsd_config:
-        statsd = StatsClient(
-            host=statsd_config['hostname'],
-            port=statsd_config['port'],
-            prefix=statsd_config['prefix'])
+    :param value: filename (file-like object, opened for reading)
+    :return: a dict containing configuration parameters
+    :raises: json.JSONDecodeError, jsonschema.ValidationError,
+        OSError, AttributeError, ValueError, TypeError, ImportError
+    """
+    if not file:
+        config = _DEFAULT_CONFIG
     else:
-        statsd = None
-
-    interfaces.refresh(config['sensu'], state, statsd=statsd)
+        config = json.loads(file.read())
+        jsonschema.validate(config, CONFIG_SCHEMA)
 
+    _setup_logging(config.get('logging', None))
 
-if __name__ == '__main__':
-    main()
+    return config
diff --git a/brian_polling_manager/environment.py b/brian_polling_manager/environment.py
deleted file mode 100644
index 966284950140afbaf72e84ffc53a91f84f8795b8..0000000000000000000000000000000000000000
--- a/brian_polling_manager/environment.py
+++ /dev/null
@@ -1,24 +0,0 @@
-import json
-import logging.config
-import os
-
-DEFAULT_LOGGING_FILENAME = os.path.join(
-    os.path.dirname(__file__),
-    'logging_default_config.json')
-
-
-def setup_logging(filename=None):
-    """
-    set up logging using the configured filename
-    """
-    if not filename:
-        filename = DEFAULT_LOGGING_FILENAME
-
-    with open(filename) as f:
-        # TODO: this mac workaround should be removed ...
-        d = json.loads(f.read())
-        import platform
-        if platform.system() == 'Darwin':
-            d['handlers']['syslog_handler']['address'] = '/var/run/syslog'
-        logging.config.dictConfig(d)
-        # logging.config.dictConfig(json.loads(f.read()))
diff --git a/brian_polling_manager/interfaces.py b/brian_polling_manager/interfaces.py
index a94a13c2254c0d691be7b28e7ae029153e4561bb..2c0adef6f595f21ee42d64d32c1a89394cf40727 100644
--- a/brian_polling_manager/interfaces.py
+++ b/brian_polling_manager/interfaces.py
@@ -70,7 +70,7 @@ def _checks_match(a, b) -> bool:
     return True
 
 
-def refresh(sensu_params, state, statsd=None):
+def refresh(sensu_params, state):
 
     ifc_checks = load_ifc_checks(sensu_params)
 
@@ -97,9 +97,11 @@ def refresh(sensu_params, state, statsd=None):
     for name in extra_checks:
         sensu.delete_check(sensu_params, name)
 
-    if statsd:
-        statsd.gauge('checks', len(ifc_checks))
-        statsd.gauge('interfaces', interfaces)
-        statsd.gauge('checks_created', created)
-        statsd.gauge('checks_updated', updated)
-        statsd.gauge('checks_deleted', len(extra_checks))
+    # cf. main.REFRESH_RESULT_SCHEMA
+    return {
+        'checks': len(ifc_checks),
+        'input': interfaces,
+        'created': created,
+        'updated': updated,
+        'deleted': len(extra_checks)
+    }
diff --git a/brian_polling_manager/main.py b/brian_polling_manager/main.py
new file mode 100644
index 0000000000000000000000000000000000000000..5e92a164b9706344ec9d558fd37ed2fd2fdc4473
--- /dev/null
+++ b/brian_polling_manager/main.py
@@ -0,0 +1,135 @@
+"""
+This script queries Inventory Provider for changes
+and configures Sensu with the snmp polling checks
+required by BRIAN.
+
+.. code-block:: console
+
+    % brian-polling-manager --help
+    Usage: brian-polling-manager [OPTIONS]
+
+      Update BRIAN snmp checks based on Inventory Provider data.
+
+    Options:
+      --config TEXT         configuration filename
+      --force / --no-force  update even if inventory hasn't been updated
+      --help                Show this message and exit.
+
+The required configuration file must be
+formatted according to the following schema:
+
+.. asjson::
+    brian_polling_manager.configuration.CONFIG_SCHEMA
+
+"""
+import json
+import logging
+
+import click
+import jsonschema
+from statsd import StatsClient
+
+from brian_polling_manager import inventory, interfaces, configuration
+
+logger = logging.getLogger(__name__)
+
+REFRESH_RESULT_SCHEMA = {
+    '$schema': 'http://json-schema.org/draft-07/schema#',
+    'definitions': {
+        'refresh-result': {
+            'type': 'object',
+            'properties': {
+                'checks': {'type': 'integer'},
+                'input': {'type': 'integer'},
+                'created': {'type': 'integer'},
+                'updated': {'type': 'integer'},
+                'deleted': {'type': 'integer'}
+            },
+            'required': ['checks', 'input', 'created', 'updated', 'deleted'],
+            'additionalProperties': False
+        }
+    },
+    'type': 'object',
+    'properties': {
+        'interfaces': {'$ref': '#/definitions/refresh-result'}
+    },
+    'required': ['interfaces'],
+    'additionalProperties': False
+}
+
+
+def refresh(config, force=False):
+    """
+    reload inventory data & update sensu checks
+
+    The output will be a dict formatted according to the following schema:
+
+    .. asjson::
+        brian_polling_manager.main.REFRESH_RESULT_SCHEMA
+
+    :param config: a dict returned by configuration.load_config
+    :param force: if True, reload inventory data even if timestamp is same
+    :return: a dict, formatted as above
+    """
+    state = configuration.State(config['statedir'])
+    last = inventory.last_update_timestamp(config['inventory'])
+    if force or not last or last != state.last:
+        state.last = last
+        state.interfaces = inventory.load_interfaces(config['inventory'])
+
+    result = {
+        'interfaces': interfaces.refresh(config['sensu'], state)
+    }
+
+    statsd_config = config.get('statsd', None)
+    if statsd_config:
+        statsd = StatsClient(
+            host=statsd_config['hostname'],
+            port=statsd_config['port'],
+            prefix=f'{statsd_config["prefix"]}_interfaces')
+        statsd.gauge('checks', result['interfaces']['checks'])
+        statsd.gauge('input', result['interfaces']['input'])
+        statsd.gauge('created', result['interfaces']['created'])
+        statsd.gauge('updated', result['interfaces']['updated'])
+        statsd.gauge('deleted', result['interfaces']['deleted'])
+
+    jsonschema.validate(result, REFRESH_RESULT_SCHEMA)  # sanity
+    return result
+
+
+def _validate_config(_ctx, _param, file):
+    """
+    loads, validates and returns configuration parameters
+
+    :param _ctx: unused
+    :param _param: unused
+    :param value: file (file-like object open for reading)
+    :return: a dict containing configuration parameters
+    """
+    try:
+        return configuration.load_config(file)
+    except (json.JSONDecodeError, jsonschema.ValidationError, OSError,
+            AttributeError, ValueError, TypeError, ImportError) as e:
+        raise click.BadParameter(str(e))
+
+
+@click.command()
+@click.option(
+    '--config',
+    default=None,
+    type=click.File('r'),
+    callback=_validate_config,
+    help='configuration filename')
+@click.option(
+    '--force/--no-force',
+    default=False,
+    help="refresh inventory data even if it hasn't been updated")
+def cli(config, force):
+    """
+    Update BRIAN snmp checks based on Inventory Provider data.
+    """
+    logger.info(json.dumps(refresh(config, force)))
+
+
+if __name__ == '__main__':
+    cli()
diff --git a/docs/source/api.rst b/docs/source/api.rst
new file mode 100644
index 0000000000000000000000000000000000000000..efea063542a57dd21192254370ab61c5dc45f421
--- /dev/null
+++ b/docs/source/api.rst
@@ -0,0 +1,6 @@
+
+HTTP API
+===================================================
+
+.. automodule:: brian_polling_manager.api
+
diff --git a/docs/source/index.rst b/docs/source/index.rst
index d87a4b83d0b48564ca2897eb4d64af5692b64444..006d51f03004ee54b7dd4a21996274b94e633c8a 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -16,4 +16,5 @@ Sensu checks for polling the data required by BRIAN.
    :maxdepth: 2
    :caption: Contents:
 
-   cli
+   main
+   api
diff --git a/docs/source/cli.rst b/docs/source/main.rst
similarity index 64%
rename from docs/source/cli.rst
rename to docs/source/main.rst
index 128c1a0d70a7d1bd43ed6b1e2991dae613a4d20a..4ef198ec2450507e2c450a9ce8c6c13bc548b8c3 100644
--- a/docs/source/cli.rst
+++ b/docs/source/main.rst
@@ -2,5 +2,5 @@
 brian-polling-manager
 ===================================================
 
-.. automodule:: brian_polling_manager.cli
+.. automodule:: brian_polling_manager.main
 
diff --git a/requirements.txt b/requirements.txt
index 14c092051717d2a1d81ef626c0e33e155083fb67..a5a0af502b4e289530624c546268288480910240 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -2,6 +2,7 @@ click
 jsonschema
 requests
 statsd
+flask
 
 pytest
 responses
diff --git a/setup.py b/setup.py
index cf6c751e088fecda7fd1a4f1df24acc0c80a578a..59ddd2c76c53cfbd00d4366fd7c9ac62f482ac9d 100644
--- a/setup.py
+++ b/setup.py
@@ -12,11 +12,12 @@ setup(
         'click',
         'requests',
         'jsonschema',
-        'statsd'
+        'statsd',
+        'flask'
     ],
     entry_points={
         'console_scripts': [
-            'brian-polling-manager=brian_polling_manager.cli:main'
+            'brian-polling-manager=brian_polling_manager.main:cli'
         ]
     },
     include_package_data=True,
diff --git a/test/conftest.py b/test/conftest.py
index 9244fd8cbceda2598cc8e7192a1cb1e9706e6d25..2553e8fcafecbeb13bf967ab4ae92e28ebe5f704 100644
--- a/test/conftest.py
+++ b/test/conftest.py
@@ -55,6 +55,14 @@ def config():
         }
 
 
+@pytest.fixture
+def config_filename(config):
+    with tempfile.NamedTemporaryFile(mode='w') as f:
+        f.write(json.dumps(config))
+        f.flush()
+        yield f.name
+
+
 @pytest.fixture
 def mocked_sensu():
 
diff --git a/test/data/checks.json b/test/data/checks.json
index d214f344384618db1a62c8535a33e498ee8999e2..6ff1cee3be38169120c93b88181119e626d559e2 100644
--- a/test/data/checks.json
+++ b/test/data/checks.json
@@ -1,589 +1,11 @@
 [
   {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae1 1211 52925",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae1.0 1213 52927",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae11 714 36699",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae11.0 823 34309",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae11.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae12 717 22987",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae12.100 1143 12364 52204 22949 28261 41705 28571 52839 33177 28331 48858 42451 42437 43531 28217 28629 28333 41667 28519 52877 28277 53493 33153 39351 34267 28269 28343 42599 51612 28275 45013 51269 21985 50162 28259 28381 40729 28367 22709 28383 28363 12365 12368 28271 33165 28369 51527 28357 28379 41779 28273 45017 33167 28377 12366 41865 48836 37969 51275 28411 22315 37357 42903 42907 28371 28389 49220 28337 51495 22703 50136 28223 39349 42051 28419 39013 28385 43541 37367 28347 28265 28375 42317 42593 44245",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae12.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13 720 49792 49520",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13.2 1015 49516",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13.2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13.3 1187 27691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13.3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13.333 1063 49832",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13.4081 820 53293",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13.4081",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13.4084 1176 53671",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13.4084",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13.4086 1046 53691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13.4086",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13.4087 1074 52679",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13.4087",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13.4088 1312 52883",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13.4088",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13.4089 1453 53161",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13.4089",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13.4090 929 53285",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13.4090",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae13.4091 968 53311",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae13.4091",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae14 721 42065",
-    "handlers": [
-      "plain-event-logger"
-    ],
+    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae1 1211",
+    "handlers": [],
     "high_flap_threshold": 0,
     "interval": 300,
     "low_flap_threshold": 0,
-    "publish": true,
+    "publish": false,
     "runtime_assets": null,
     "subscriptions": [
       "interfacecounters"
@@ -601,26 +23,24 @@
     ],
     "env_vars": null,
     "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae14",
+      "name": "ifc-mx1.ams.nl.geant.net-ae1",
       "namespace": "default",
       "created_by": "admin"
     },
     "secrets": null
   },
   {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae14.600 1245 42047",
-    "handlers": [
-      "plain-event-logger"
-    ],
+    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae10 1006",
+    "handlers": [],
     "high_flap_threshold": 0,
     "interval": 300,
     "low_flap_threshold": 0,
-    "publish": true,
+    "publish": false,
     "runtime_assets": null,
     "subscriptions": [
       "interfacecounters"
     ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
+    "proxy_entity_name": "mx1.fra.de.geant.net",
     "check_hooks": null,
     "stdin": false,
     "subdue": null,
@@ -633,21 +53,19 @@
     ],
     "env_vars": null,
     "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae14.600",
+      "name": "ifc-mx1.fra.de.geant.net-ae10",
       "namespace": "default",
       "created_by": "admin"
     },
     "secrets": null
   },
   {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15 722 28201",
-    "handlers": [
-      "plain-event-logger"
-    ],
+    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae1 1211",
+    "handlers": [],
     "high_flap_threshold": 0,
     "interval": 300,
     "low_flap_threshold": 0,
-    "publish": true,
+    "publish": false,
     "runtime_assets": null,
     "subscriptions": [
       "interfacecounters"
@@ -665,134943 +83,7 @@
     ],
     "env_vars": null,
     "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.1025 1290 28709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.1025",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.1103 1247 28203 28471",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.1103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.111 1161 40955",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.112 1442 25791",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.112",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.306 1261 15785",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.306",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.333 801 31727",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.34 1462 51479",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.34",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.360 940 38035",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.360",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.40 1463 51485",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.40",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.4002 1026 53611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.4002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.667 1138 40455",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.673 657 33789",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.673",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.701 1137 52735",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.701",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.722 1256 15789",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.722",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.723 1255 15795",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae15.723",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae16 723 38597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae16.100 996 38599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae16.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae16.111 995 38601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae16.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae17 724 39061",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae17.100 1038 39059",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae17.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae17.402 1050 39133",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae17.402",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae17.802 1114 39115",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae17.802",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20 727 46517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.100 1407 46519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae20.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.200 1406 46521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae20.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.210 1517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae20.210",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.220 1516",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae20.220",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.2260 989 49762",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae20.2260",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.3019 1479 41405",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae20.3019",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.3020 1478 41309",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae20.3020",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.3153 1467 29919",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae20.3153",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.990 1491 51624",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae20.990",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21 728 51638",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.10 1020 52643",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.11 1087 52727",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.12 1159 52747",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.13 1078 52679",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.14 1180 52789",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.15 1316 52883",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.16 1324",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.17 814 53293",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.18 1454 53161",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.19 1483 53199",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.2 980 52587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.20 930 53285",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.21 969 53311",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.22 978 53439",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.23 1018 53519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.24 1042 53671",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.3 1008 52603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.4 1025 52661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.5 1030 52687",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.6 1002 52593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.7 1103 52705",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.8 1111 52711",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.9 1048 53691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae21.9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae3 631 30565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae3.0 1319 30567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae5 633 24337",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae5.0 709 24339",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae7 705 47367",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae7.0 1477 47365",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae9 707 47793",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae9.0 1501 47791",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ae9.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-11/1/0 1235",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-11-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-11/3/0 1240",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-11-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/0/2 1070",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/0/2.1500 1540 15829",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-0-2.1500",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/0/2.2009 1535 49288",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-0-2.2009",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/0/2.2281 1536 38961",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-0-2.2281",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/0/2.2361 1157 50046",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-0-2.2361",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/0/2.3003 1541 31231",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-0-2.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/0/2.3004 1542 41969",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-0-2.3004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/0/5 1071",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2 1075 36787",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.100 1077 39831 34349",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.101 985",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.101",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.2013 1085 16085",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.2013",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.2023 1086 37279",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.2023",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.2905 1117",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.2905",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.300 1300 17340",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.300",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.301 1301 31809",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.301",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3068 1022 53583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.3068",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.315 1447 53217",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.315",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3222 1089 29275",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.3222",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3333 1090 38609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.3333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.334 1079 33541 52543",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.334",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3610 1460 11397",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.3610",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3611 1488 51521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.3611",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.4001 1029 53609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.4001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.4005 1091 30533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.4005",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.510 1057",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.510",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.820 1081 34089",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.820",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.908 1082 40543",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-2.908",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/5 1076",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/5.104 1094 27969",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-5.104",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/5.111 1097 28633",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-5.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/5.1220 1098 29547",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-3-1-5.1220",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-4/0/2 1384",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-4-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-4/0/5 1383",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-4-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-4/1/2 1385",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-4-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-4/1/5 1386",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-4-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-5/1/0 880",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-5-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-5/3/0 885",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-5-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-7/0/2 1382",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-7-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-7/0/5 1381",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-7-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-7/1/2 1391",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-7-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-7/1/5 1388",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-7-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-8/0/2 1379",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-8-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-8/0/5 1380",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-8-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-8/1/2 1392",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-8-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-8/1/5 1393",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-et-8-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/0 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/0.0 768",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/1 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/1.0 687 15975",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/2 609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/2.0 711",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/3 610",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/3.0 710 15993",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/4 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/4.0 718",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/5 627",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/6 635",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/6.0 1315 28752",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/7 636",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/7.0 1199 27961",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/8 645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/9 664",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/9.0 1218",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-2-9.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/0 668",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/1 669",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/2 670",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/2.1175 1283",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-2.1175",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3 671 31405",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.101 1068",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.101",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.102 1080",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.102",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.170 1198",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.170",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.201 1375",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.201",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.202 1376",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.202",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.203 1377",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.203",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.204 1378",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.204",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.21 753",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.22 754",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.23 798",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.24 661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.240 1182",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.240",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.250 831",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.250",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.3005 1304",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.3005",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.3018 1122 41587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.3018",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.3020 1123 41579",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.3020",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.3021 1125",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.3021",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.50 660",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.50",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.550 790",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.550",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.7 807",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.72 758",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.72",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.75 759",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.75",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.79 760",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.79",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.888 933 42351",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.888",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.91 764",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.91",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.991 977",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-3.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/4 672",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/5 673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/6 676",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/6.2016 864",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-6.2016",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/7 677",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/7.67 1059",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-7.67",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/7.68 1058",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-7.68",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/8 678",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/9 679",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/0 726",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/1 743",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/2 808",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/2.0 1066",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-2-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/3 832",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/4 833",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/5 840",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/6 841",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/7 842",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/8 843",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/9 844",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/0 845",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/1 846",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/2 847",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/3 848",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/4 849",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/5 857",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/6 861",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/7 873",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/8 890",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/9 891",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-ge-9-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net gr-11/1/0.0 965 39697",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-gr-11-1-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net gr-11/1/0.1 1102",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-gr-11-1-0.1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net irb.888 1170",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-irb.888",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net irb.999 797",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net lt-11/1/0 904",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-lt-11-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net lt-11/1/0.12 908",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-lt-11-1-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net lt-11/1/0.13 909",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-lt-11-1-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net lt-11/1/0.16 1112",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-lt-11-1-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net lt-11/1/0.21 910",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-lt-11-1-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net lt-11/1/0.31 911",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-lt-11-1-0.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net lt-11/1/0.61 1113",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-lt-11-1-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net so-1/2/0 934",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-so-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net so-1/2/1 935",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-so-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net so-1/2/2 936",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-so-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net so-1/2/3 937",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-so-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-0/0/0 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-0/0/1 589",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-0/1/1 591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-1/0/0 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-1/0/1 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-1/1/0 570",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-1/1/1 571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/0/0 1231",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/0/1 1232",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/0/2 1233",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/0/3 1234",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/0 1236",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/0.10 1559 51654",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-0.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/0.20 1560 51658",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-0.20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/0.25 804",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-0.25",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/0.34 800",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-0.34",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/0.50 803",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-0.50",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/1 1239",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/1.11 1494",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-1.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/1.12 974",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-1.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/1.13 781",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-1.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/1.14 799",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-1.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/1.15 806",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-1.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/1.16 1265",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-1.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/1.17 892",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-1.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/1.18 893",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-1.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/1.20 1023",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-1.20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2 1237",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2.11 788",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-2.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2.12 792",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-2.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2.13 858",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-2.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2.14 894",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-2.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2.15 927",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-2.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2.16 967",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-2.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2.17 1031",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-2.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2.18 1047",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-2.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2.19 1049",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-2.19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/3 1238",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-11-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/0/0 572",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/0/1 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/0/2 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/0/2.0 719",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-0-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/0/3 575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0.2905 1116",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-0.2905",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0.922 1039",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-0.922",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0.923 1204",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-0.923",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0.924 1205",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-0.924",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0.925 1206",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-0.925",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0.932 1040",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-0.932",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0.933 1207",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-0.933",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0.934 1208",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-0.934",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0.935 1209",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-0.935",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/1 577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/2 578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/2.1003 979",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-2.1003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/3 579",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/2/0 580",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/2/1 581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/2/2 582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/2/3 583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/3/0 584",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/3/1 585",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/3/2 586",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/3/2.0 926",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-3-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/3/3 587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-2-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/0/0 876",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/0/1 877",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/0/2 878",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/0/3 879",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/1 882",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/1.0 1450 51377 51381",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-2-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/2 883",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/2.0 1448",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-2-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3 884",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.101 1441 53049",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-2-3.101",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.1916 1024 52655",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-2-3.1916",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.2200 988 52637",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-2-3.2200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.3068 976 53583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-2-3.3068",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.701 1155 52735",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-2-3.701",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.702 987",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-5-2-3.702",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/0 740",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/1 741",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/2 742",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/3 637",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/4 681",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/4.0 749",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/5 686",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/6 712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/7 715",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/7.101 1444 53049",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-7.101",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/8 716",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/8.105 1126 11727",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-8.105",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/8.111 1127 12405",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-8.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/9 739",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ams.nl.geant.net-xe-9-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae0 573 39791",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae0.0 575 39793",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae1 576 39795",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae1.0 577 39797",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae11 593 16023",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae11.100 611 14709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae11.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae11.333 608 31683",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae11.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae11.667 664 42891",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae11.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae12 546 43225",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae12.100 552 43227",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae12.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae12.333 551 31663",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae12.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae12.505 557 43279",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ae12.505",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net dsc.0 510",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/2 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/3 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/4 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/5 531",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/6 532",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/7 533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/8 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/9 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/0 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/1 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/2 538",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/3 539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/4 540",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/5 541",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/6 542",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/7 543",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/8 544",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/9 545",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-ge-1-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net lt-2/0/0 641",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-lt-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net lt-2/0/0.16 644",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-lt-2-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net lt-2/0/0.61 645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-lt-2-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-1/0/0 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-1/0/1 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-1/1/0 571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-1/1/1 570",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/0 623",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/1 624",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/2 625",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/2.505 559 43279",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-2-0-2.505",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/3 626",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/4 627",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-2-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/5 628",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-2-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/6 629",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-2-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/7 630",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-2-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/8 631",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-2-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/9 632",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-2-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/0 591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/1 594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/2 595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/3 596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/4 597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-3-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/5 598",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-3-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/6 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-3-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/7 600",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-3-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/8 601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-3-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/9 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ath2.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ath2.gr.geant.net-xe-3-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae11 549 31829",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae11.0 640 8832",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae11.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae11.111 643 15845",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae11.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae11.333 642 11267 31719",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae11.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae12 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae12.200 665 42195",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae12.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae12.333 666 42405",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae12.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae12.667 706 51413",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae12.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae4 542 12667",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae4.0 578 12669",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae8 546 31461",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae8.0 636 31463",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae9 547",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae9.0 735",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ae9.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net dsc.0 619",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net et-3/0/0 715",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-et-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net et-4/0/0 716",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-et-4-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/0 583 31417",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/0.124 618",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-0.124",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/0.21 595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/0.60 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-0.60",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/1 584",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/2 585",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/3 586",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/4 587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/5 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/6 589",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/7 590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/8 591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/9 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/0 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/1 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/2 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/3 606",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/4 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/5 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/6 609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/7 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/8 612",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/9 613",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net lt-0/0/0 655",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net lt-0/0/0.16 658",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net lt-0/0/0.61 659",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-0/0/0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-0/0/1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-0/1/0 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-0/1/1 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/0/0 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/0/1 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/1/0 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/1/1 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/2/0 674",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/2/1 673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/3/0 675",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/3/1 676",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-1-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/0 684",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/1 685",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/2 686",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/3 687",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/4 688",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-2-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/5 689",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-2-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/6 690",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-2-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/7 691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-2-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/8 692",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-2-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/9 693",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.buc.ro.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.buc.ro.geant.net-xe-2-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae0 614 17633",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae0.0 621 17635",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae1 615 25409",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae1.0 708 25411",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae10 642 23213",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae10.100 730 10083 10199 28491 41551 23329",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae10.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae10.1955 814 52963",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae10.1955",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae10.333 705 41555 31685",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae10.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae10.911 697 27673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae10.911",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae11 643 26155",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae11.100 734 11377",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae11.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae11.333 732 31735",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae11.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae13 648 42661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae13.333 1022 31659",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae13.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae13.600 1021 22181 28501",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae13.600",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae15 652 11109 37799",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae15.100 865 24425",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae15.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae15.333 864 31701",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae15.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae16 653 38887",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae16.1 878 21979 12351",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae16.1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae16.10 877 27501",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae16.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae16.333 876 31637",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae16.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae17 654 40473",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae17.0 899 40475",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae17.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae18 655 46209",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae18.10 527 51401 46983 47407 47529 52757 47347 49050 47537 51271 49120",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae18.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae18.11 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae18.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae19 656 46761",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae19.0 554 12115",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae19.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae2 616 50509",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae2.0 709 50507",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae3 617 29929",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae3.0 714 29951",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae4 618 12667",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae4.0 739 12669",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ae4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-1/1/0 676",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-et-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-1/3/0 681",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-et-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-2/1/0 647",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-et-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-2/3/0 649",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-et-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-3/1/0 689",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-et-3-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-3/3/0 698",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-et-3-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/0 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/1 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/2 594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/3 595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/4 596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/5 597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/6 598",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/7 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/8 600",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/8.0 836",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-2-8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/9 601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/0 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/1 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/2 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/3 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/4 606",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/5 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.170 764",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-6.170",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.200 767",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-6.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.23 834",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-6.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.24 835",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-6.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.3005 772",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-6.3005",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.60 759",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-6.60",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.7 774",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-6.7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.93 762",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-6.93",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/7 609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/8 610",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/9 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net irb.999 660",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net lt-0/0/0 745",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net lt-0/0/0.16 791",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net lt-0/0/0.61 800",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-0/0/0 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-0/0/1 589",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-0/1/0 590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-0/1/1 591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/0/0 657",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/0/1 673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/0/2 674",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/0/3 675",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-1-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/2/0 677",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/2/1 678",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/2/2 679",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/2/3 680",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/0/0 632",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/0/1 633",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/0/2 634",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/0/3 635",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/2/0 636",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/2/1 637",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/2/2 644",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/2/3 645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-2-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/0 682",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/0.0 786 51389 51385",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-3-0-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/1 684",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/1.0 787",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-3-0-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/2 687",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/2.1955 816 52963",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-3-0-2.1955",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/3 688",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/2/0 693",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-3-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/2/1 690",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-3-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/2/2 691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-3-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/2/3 692",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-3-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/0 912",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/1 913",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/2 914",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/3 915",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/4 916",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/5 917",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/6 918",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/7 919",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/0 920",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/1 921",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/2 922",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/3 923",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/4 924",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/5 925",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/6 926",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/7 927",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/0 928",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/1 929",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/2 930",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/2.0 1012",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-2-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/3 931",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/4 932",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/5 933",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/6 934",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/7 935",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/0 936",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/1 937",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/2 938",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/3 939",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/4 940",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/5 941",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/6 942",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/7 943",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.bud.hu.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.bud.hu.geant.net-xe-5-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae1 537 29995",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae1.0 545 29443",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10 550 27909",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.12 615 31339",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae10.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.1213 711 52452",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae10.1213",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.2281 695 38961",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae10.2281",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.30 614 31353 31381",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae10.30",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.315 707 53217",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae10.315",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.333 585 31849",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae10.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae14 556 43037",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae14.0 702 30989 41791 38433 51642 30993 30995 40957 50499 51347 30997 30767 30999 30991 41783 43473 42949 41879 41869 48365 51552 39041 42323 51245",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae14.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae2 538 29993",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae2.0 648 31343",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net dsc.0 544",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-2/0/0 676",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-et-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-3/0/0 677",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-et-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/0 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/0.111 626 31439",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-0.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/0.120 627",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-0.120",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/0.210 629",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-0.210",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/0.23 698",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-0.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/1 594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/1.0 678",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/3 596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/4 597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/5 598",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/6 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/7 600",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/8 601",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/9 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/0 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/1 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/2 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/3 606",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/4 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/5 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/6 609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/7 610",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/8 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/9 612",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-ge-1-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net lt-2/0/0 687",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-lt-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net lt-2/0/0.16 690",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-lt-2-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net lt-2/0/0.61 691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-lt-2-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-0/0/0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-0/0/1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-0/1/0 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-0/1/1 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-1/0/0 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-1/0/1 531",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-1/1/0 532",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub.ie.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae1 581 29995",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae1.0 711 29443",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10 596 25909",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.12 713 48776 31347",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ae10.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.30 712 31351 31383",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ae10.30",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.333 658 31851",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ae10.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae3 583 42043",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae3.0 755 42045",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net dsc.0 582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net et-2/0/0 750",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-et-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net et-3/0/0 751",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-et-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/0.0 719",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/1 691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/1.0 752",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/2 692",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/3 693",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/3.23 768",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-3.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/4 694",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/5 695",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/6 696",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/7 697",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/8 698",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/9 699",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/0 700",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/1 701",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/2 702",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/3 703",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/4 704",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/5 705",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/6 706",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/7 707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/8 708",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/9 709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-ge-1-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net lt-2/0/0 762",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-lt-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net lt-2/0/0.16 765",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-lt-2-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net lt-2/0/0.61 766",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-lt-2-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-0/0/0 554",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-0/0/1 555",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-0/1/0 556",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-0/1/0.3015 632 25881",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-xe-0-1-0.3015",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-0/1/1 557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-1/0/0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-1/0/1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-1/1/0 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-1/1/1 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.dub2.ie.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.dub2.ie.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae10 1006 50028",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae10.3 933 52995",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae10.3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae11 744 23337",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae11.100 855 22585 28459 34707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae11.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae11.111 854 23335",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae11.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae11.112 879 27505",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae11.112",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae11.333 936 31665",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae11.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae11.353 712 26985",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae11.353",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae11.667 519 33539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae11.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae11.931 1033",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae11.931",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae12 745 24381",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae12.100 522 11223 40835 52200 22951 28281 51289 41707 28573 52841 22947 48860 50428 42439 43533 28219 28585 28335 41669 28521 53011 28297 53495 33179 22713 34269 47245 28345 42601 51614 28295 45015 33183 50166 28279 30815 28327 28393 28365 11175 11151 28291 30819 11157 51529 42331 28359 28391 41781 28293 30821 11211 41867 37971 30825 28413 22317 37361 42911 30817 28397 28353 49222 28339 51493 22705 43341 28399 28225 39347 28421 39015 28395 43543 37369 28349 28287 42319 42595 34319 44247",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae12.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae13 746 21623",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae13.0 897 10971",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae13.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae14 747 36249",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae14.100 1047 36251",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae14.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae14.333 1043 36253",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae14.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae15 748 50234",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae15.720 1192 50232",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae15.720",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae16 749 50424",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae16.740 1194 50426",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae16.740",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae17 750 31825",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae17.100 1226",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae17.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae17.200 1058 31823",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae17.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae17.220 983 49986",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae17.220",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae18 751 22289",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae18.2602 730 8868",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae18.2602",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae18.333 717 8925 31715",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae18.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae18.667 1261 51439",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae18.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae18.854 1278 51582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae18.854",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae19 834 49802",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae19.112 891 49806",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae19.112",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae19.113 1003 50042",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae19.113",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae19.114 1339 52783",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae19.114",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae2 652 47495",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae2.0 1377 47501",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae20 753 42409",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae20.0 1237 42407",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae20.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae21 754 36887",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae21.100 1013 17327",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae21.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae21.333 806 31691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae21.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae21.667 727 34075",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae21.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae22 755 37223",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae22.332 1082 31661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae22.332",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae22.360 1146 38743",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae22.360",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae22.99 1092 11401 12451",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae22.99",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae23 756 38073",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae23.200 1086 38071",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae23.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae23.210 1072 38581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae23.210",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae24 757 43307",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae24.0 1251 43309",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae24.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae25 758 39159",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae25",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae25.0 1079 39155",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae25.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae26 759 50471",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae26",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae27 760 40983",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae27",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae27.100 1211 23111",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae27.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae27.333 1210 31737",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae27.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae27.360 1209 39761",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae27.360",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae28 761 40459",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae28",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae28.0 1202 40463",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae28.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae29 762 40987",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae29",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae29.0 1208 40991",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae29.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae3 653 16377",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae3.0 718 16379",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30 763 41393 43349 52500",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.2001 895 41397",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30.2001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3000 869 41395",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30.3000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3001 520",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30.3001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3002 1394",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30.3002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3003 1395",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3004 1401",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30.3004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3005 1232",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30.3005",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3006 1275",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30.3006",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3007 1292",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30.3007",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3008 1321",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30.3008",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.991 1249",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae30.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae31 1007 50030",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae31.3 931 53033",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae31.3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae32 820 44855",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae32",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae32.0 824 12118",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae32.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae33 981",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae33",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae33.111 1055 46473",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae33.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae33.200 996 46479",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae33.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae34 1195 50473",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae34",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae35 1217",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae35",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae35.0 1218 50929",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae35.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae36 1224 50783",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae36",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae36.0 1225 50861",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae36.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae37.0 1281",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae37.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae38 921 38103",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae38",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae38.100 922 22885",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae38.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae38.333 923 47123",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae38.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae38.360 941 38731",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae38.360",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae38.370 1030 38743",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae38.370",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae39 1025",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae39",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae39.0 1026",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae39.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae5 655 30571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae5.0 814 30593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae7 1382 47367",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae7.0 1383 47365",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae8 995 49768",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae8.0 1002 49770",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae9 741",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae9.0 1053",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ae9.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net dsc.0 1222",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-11/1/0 973",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-11-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-11/3/0 978",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-11-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-2/0/2 927",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-2/0/5 928",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-2-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-2/1/2 929",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-2-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-2/1/5 930",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-2-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-4/0/2 716",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-4-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-4/0/5 723",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-4-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-4/1/2 724",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-4-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-4/1/5 725",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-4-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-5/0/2 661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-5-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-5/0/5 719",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-5-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-5/1/2 1161",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-5-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-5/1/5 1162",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-5-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-7/0/2 1304",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-7-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-7/0/5 1305",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-7-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-7/1/2 1306",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-7-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-7/1/5 1307",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-7-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-8/0/2 1362",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-8-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-8/0/5 1361",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-8-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-8/1/2 1363",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-8-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-8/1/5 1364",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-et-8-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/0 606",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/1 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/2 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/2.132 857",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-2.132",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/3 609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/3.0 1330",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/4 610",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5 612",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.102 1370",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-5.102",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.103 1371",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-5.103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.201 1372",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-5.201",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.202 1373",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-5.202",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.25 829",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-5.25",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.3005 1236",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-5.3005",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.301 1449",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-5.301",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.302 1450",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-5.302",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.991 956",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-5.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/6 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/7 613",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/8 614",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/9 615",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/9.0 1183",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-2-9.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/0 616",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/0.10 1328",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-0.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/0.11 1331",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-0.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/0.991 1332",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-0.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/1 617",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/2 618",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/3 619",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/3.278 821 20393",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-3.278",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/4 620",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/5 621",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/6 622",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/7 623",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/8 624",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/9 625",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/0 639",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/0.0 731",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/1 640",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/2 641",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/3 642",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/3.0 1184",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/4 643",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/5 646",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/6 647",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/6.0 1185",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/7 648",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/7.0 1186",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8 649",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.130 914",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-8.130",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.131 915",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-8.131",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.172 943",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-8.172",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.21 901",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-8.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.22 902",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-8.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.23 627 31401",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-8.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.24 628",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-8.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.60 904",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-8.60",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.78 906",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-8.78",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/9 656",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/0 658",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/1 659",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/2 662",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/3 663",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/3.0 676",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/4 664",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/4.0 677",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/5 665",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/6 666",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/7 667",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/8 668",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/9 669",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-ge-1-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.0 1073",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.1 1074",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.10 672",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.11 715",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.12 703",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.13 1277",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.14 1282",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.15 1333",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.16 947",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.17 949",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.18 1010",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.2 752",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.3 819",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.6 1244",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.8 1374",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-0-0-0.8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-1/0/0.0 1120 38169",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-gr-1-0-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.105 911",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-irb.105",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3000 1084",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-irb.3000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3001 678",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-irb.3001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3002 1384",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-irb.3002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3003 1385",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-irb.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3004 1396",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-irb.3004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3006 1270",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-irb.3006",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.998 835",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-irb.998",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.999 707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-1/1/0 1134",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-lt-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-1/1/0.12 1137",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-lt-1-1-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-1/1/0.13 1138",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-lt-1-1-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-1/1/0.21 1140",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-lt-1-1-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-1/1/0.31 1141",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-lt-1-1-0.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-11/1/0 1150",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-lt-11-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-11/1/0.1112 880",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-lt-11-1-0.1112",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-11/1/0.16 1153",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-lt-11-1-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-11/1/0.2111 938",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-lt-11-1-0.2111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-11/1/0.61 1154",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-lt-11-1-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-0/0/0 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-0/0/1 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-0/1/0 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-0/1/1 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-1/0/0 564",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-1/0/1 565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-1/1/0 566",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-1/1/1 567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/0 779",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/1 780",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/2 781",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/3 782",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/4 783",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/5 784",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/6 785",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/7 786",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/0 790",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/1 787",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/2 788",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/3 789",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/4 791",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/5 792",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/6 793",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/7 794",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/0 795",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/1 796",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/2 859",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/3 812",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/4 852",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/5 860",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/6 863",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/7 866",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/0 867",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/1 868",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/2 870",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/3 871",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/4 872",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/5 873",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/5.0 1447 38581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-3-5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/6 874",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/6.0 831 51341",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-3-6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/7 875",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-10-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/0/0 971",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/0/1 972",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/0/1.0 833 49986",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-0-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/0/2 969",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/0/3 970",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/0/3.100 1250",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-0-3.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/0/3.220 1173 51341",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-0-3.220",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/0/3.240 1214",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-0-3.240",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/0/3.300 1157 34081",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-0-3.300",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/2/0 974",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/2/1 975",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/2/2 976",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-11/2/3 977",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-11-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/0/0 586",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/0/0.0 711",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-0-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/0/1 587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/0/2 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/0/3 589",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/1/0 590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/1/1 591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/1/2 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/1/3 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/1/3.0 942 51377",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-1-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/0 594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/0.0 1260 51389",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1 595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1.101 937 53059",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-1.101",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1.1213 1319 52452",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-1.1213",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1.559 1036",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-1.559",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1.702 1318",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-1.702",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1.766 1338 52779",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-1.766",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/2 596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/2.22 694",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-2.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/2.33 726",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-2.33",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/3 597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/3.0 732",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-2-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/3/0 598",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/3/1 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/3/2 600",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/3/3 601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/3/3.0 825",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.fra.de.geant.net-xe-3-3-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10 697 21193",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10.111 798 12248",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae10.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10.112 852 49806",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae10.112",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10.113 861 50042",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae10.113",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10.114 907 52783",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae10.114",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10.2905 665",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae10.2905",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10.496 1257 52995",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae10.496",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10.497 631 53199",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae10.497",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae11 698 21603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae11.111 800 39623",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae11.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae11.116 875 27869",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae11.116",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12 699 16009",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.1000 696 16007",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae12.1000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.1001 886 28105",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae12.1001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.1100 765 33735",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae12.1100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.111 700 12156",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae12.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.1200 805 34713",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae12.1200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.333 745 31679",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae12.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.4087 639 53525",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae12.4087",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.4089 630 53449",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae12.4089",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.667 787 34999",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae12.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14 704 23751",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.1290 774 34195",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae14.1290",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.160 828 12404",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae14.160",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.161 916 29311",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae14.161",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.2061 788 34257",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae14.2061",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.3151 826 7474",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae14.3151",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.3157 872 33753",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae14.3157",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.333 895 31713",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae14.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.518 827 26021",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae14.518",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.667 529 41651",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae14.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.990 887 51624",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae14.990",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae17 707 29513",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae17.200 920 29525",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae17.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae17.333 748 31655",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae17.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae17.667 761 33535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae17.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae18 708 30443",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae18.2001 864 30553 30799 30801 42913 30803 43539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae18.2001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae20.100 892 52476",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae20.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae20.111 897 51616",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae20.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae21 711 52905",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae21.110 1243 52907",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae21.110",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae21.496 1265 53033",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae21.496",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae21.497 633 53201",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae21.497",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae22.201 1237 52897",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae22.201",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae22.334 1238 52901",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae22.334",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae22.668 1239 52899",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae22.668",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23 713",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.100 1271 23777",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.16 1268",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.310 1272",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23.310",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.333 1273 31731",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.350 1274",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23.350",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.360 1278",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23.360",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.559 641",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23.559",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.600 1275",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23.600",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.667 1276",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.70 1269",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23.70",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.80 1270",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae23.80",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae3 652 47495",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae3.0 1459 47501",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae5 654 47499",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae5.0 1463 47503",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae6 655 49732",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae6.0 803 49730",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae7 683 24859",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae7.0 662 24861",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae8 686 30957",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae8.0 1230 30965",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ae8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-1/0/2 1333",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-1/0/5 1334",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-1-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-1/1/2 1346",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-1-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-1/1/5 1347",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-1-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-10/0/2 1250",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-10-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-10/0/5 1251",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-10-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-10/1/2 1252",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-10-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-10/1/5 1253",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-10-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-11/0/2 1214",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-11-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-11/0/5 1215",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-11-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-11/1/2 1216",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-11-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-11/1/5 1219",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-11-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-3/0/2 837",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-3/0/5 847",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-3-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-3/1/2 849",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-3-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-4/0/2 1435",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-4-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-4/0/5 1436",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-4-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-4/1/2 1439",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-4-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-4/1/5 1440",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-4-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-5/0/2 1437",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-5-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-5/0/5 1438",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-5-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-5/1/2 1441",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-5-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-5/1/5 1442",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-5-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/0/2 1528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-8-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/0/2.104 1532 27971",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-8-0-2.104",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/0/2.106 1533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-8-0-2.106",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/0/2.111 1534 28635",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-8-0-2.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/0/5 1529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-8-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/1/2 1530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-8-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/1/5 1531",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-et-8-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/1 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/2 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/3 609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/4 610",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/5 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/6 612",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/7 613",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/8 614",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/9 615",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/0 616",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/1 617",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/2 618",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/3 619",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4 620",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.170 879",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.170",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.201 1450",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.201",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.202 1451",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.202",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.21 813",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.22 814",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.23 768 31445",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.24 769",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.301 1452",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.301",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.302 1453",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.302",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.401 1454",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.401",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.402 1455",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.402",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.60 816",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.60",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.991 628",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-4.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/5 621",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/6 622",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/7 623",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/8 624",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/9 625",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net irb.999 678",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-0/0/0 1205",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-0/0/0.12 1206",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-lt-0-0-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-0/0/0.13 1208",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-lt-0-0-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-0/0/0.21 1210",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-lt-0-0-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-0/0/0.31 1211",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-lt-0-0-0.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-8/1/0 1602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-lt-8-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-8/1/0.1112 1607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-lt-8-1-0.1112",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-8/1/0.16 1605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-lt-8-1-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-8/1/0.2111 1608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-lt-8-1-0.2111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-8/1/0.61 1606",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-lt-8-1-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/0/0 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/0/1 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/1/0 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/1/1 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/1/1.1100 767 33735",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-0-1-1.1100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/1/1.1200 807 34713",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-0-1-1.1200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/0 556",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/1 557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/1.0 644 53937",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/2 1297",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/2.0 1387",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/3 1292",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/4 1293",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/5 1294",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/5.0 645 53935",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/6 1295",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/6.0 646 53937",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/7 1296",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/7.0 649 53935",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-0-7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/0 558",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/1 559",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/2 1298",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/3 1299",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/4 1300",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/5 1301",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/6 1302",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/7 1303",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/0 1304",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/1 1305",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/2 1306",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/3 1307",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/4 1308",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/5 1336",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/6 1337",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/7 1335",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/0 1338",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/1 1339",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/2 1340",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/3 1341",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/4 1342",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/5 1343",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/6 1344",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/7 1345",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.gen.ch.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.gen.ch.geant.net-xe-2-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae0 564 30571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae0.0 573 30593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae1 565 30565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae1.0 631 30567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10 577 24459",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.100 606 22065 28461 34709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae10.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.111 608 22067",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae10.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.112 610 27507",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae10.112",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.333 622 31667",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae10.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.354 612 29919",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae10.354",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.667 697 33537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae10.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11 578 19631",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.100 634 19701",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae11.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3003 692 31035",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae11.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3901 924 53169",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae11.3901",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3903 930 53137",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae11.3903",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3905 936 53145",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae11.3905",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3907 940 53135",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae11.3907",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3908 951 52727",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae11.3908",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3911 960 53151",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae11.3911",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3913 964 53131",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae11.3913",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae12 579 38339",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae12.111 734 35045",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae12.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae12.20 731 28589",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae12.20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae12.320 738 4032 28469",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae12.320",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae12.334 736 31705",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae12.334",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae2 566 30557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae2.0 635 30555",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net dsc.0 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-0/1/0 1478",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-et-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-0/3/0 1481",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-et-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-1/1/0 1491",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-et-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-1/3/0 1494",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-et-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-2/1/0 644",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-et-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-2/3/0 649",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-et-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-3/0/0 656",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-et-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-4/0/0 712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-et-4-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-5/1/0 786",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-et-5-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-5/3/0 804",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-et-5-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/0 661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/0.23 695",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-0.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/0.24 696",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-0.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/0.250 678 42521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-0.250",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/1 662",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/2 663",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/3 657",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/4 658",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/5 659",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/6 660",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/7 664",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/8 665",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/9 666",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/0 672",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/1 673 37257",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/2 674",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/2.0 848",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-3-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/3 667",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/4 668",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/5 669",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/6 670",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/7 671",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/8 675",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/9 676",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-ge-3-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net irb.250 853",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-irb.250",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net irb.999 835",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net lt-2/1/0 794",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-lt-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net lt-2/1/0.16 797",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-lt-2-1-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net lt-2/1/0.61 798",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-lt-2-1-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/0 556",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/1 557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/2 1476",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/3 1477",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/3.20 897 51658",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-0-3.20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/3.26 915 51509",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-0-3.26",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/3.30 898 51660",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-0-3.30",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/3.40 914 51485",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-0-3.40",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/3.44 913 47395",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-0-3.44",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/2/0 548",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/2/0.26 855 51509",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-2-0.26",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/2/0.33 856 51511",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-2-0.33",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/2/1 549",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/2/2 1479",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/2/3 1480",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/0 546",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/1 547",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/1.0 745",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/2 1489",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/2.101 988 53059",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-2.101",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/3 1490",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/3.11 623",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-3.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/3.12 684",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-3.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/3.13 687",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-3.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/3.14 700",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-3.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/3.15 698",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-3.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/3.16 720 53419",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-3.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/3.17 689",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-3.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/3.18 728",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-0-3.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0 837",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.11 688",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.12 681",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.13 685",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.14 690",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.15 691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.16 693",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.17 703 53417",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.18 722",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.19 723",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.20 726",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.21 727",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0.22 732",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-0.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/1 838",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/2 1492",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/3 1493",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/0/0 640",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/0/1 641",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/0/2 642",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/0/3 643",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/2/0 645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/2/0.13 721 52382",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-2-2-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/2/0.17 704 53417",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-2-2-0.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/2/1 646",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/2/2 647",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/2/3 648",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-2-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/0/0 780",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-5-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/0/1 783",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-5-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/0/2 784",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-5-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/0/3 785",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-5-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/2/0 803",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-5-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/2/1 787",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-5-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/2/2 801",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-5-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/2/3 802",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.ham.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.ham.de.geant.net-xe-5-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae0 565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae0.0 567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae1 563",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae1.0 566",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae2 524",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae2.0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae3 583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31 573",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-ae31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31.2000 578",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-ae31.2000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net dsc.0 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net et-0/0/0 542",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-et-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net et-0/0/1 543",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-et-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net et-0/0/2 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-et-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net lt-0/0/0 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net lt-0/0/0.16 554",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net lt-0/0/0.61 558",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/0 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/1 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/2 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-xe-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/3 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-xe-0-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/3.0 571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-xe-0-1-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/4.0 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-xe-0-1-4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/6 540",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-xe-0-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/7 541",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lab.office.geant.net-xe-0-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net ae0 526 22577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net ae0.0 623 22193",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net ae10 538 28603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net ae10.1931 635 13973 28489",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-ae10.1931",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net ae10.1934 754 52807",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-ae10.1934",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net ae10.1944 740 52587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-ae10.1944",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net ae10.1946 745 52643",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-ae10.1946",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net ae10.333 644 31675",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-ae10.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net ae5 531 21971",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net ae5.0 534 21969",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-ae5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net dsc.0 666",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net et-3/1/0 707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-et-3-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net et-3/3/0 712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-et-3-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net lt-0/0/0 658",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net lt-0/0/0.16 661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net lt-0/0/0.61 662",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-0/0/0 554",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-0/0/1 555",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-0/1/0 556",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-0/1/1 557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-1/0/0 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-1/0/1 551",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-1/1/0 552",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-1/1/1 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-2/0/0 679",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-2/0/1 680",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-2/1/0 681",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-2/1/1 682",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-3/0/0 703",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-3/0/1 704",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-3/0/2 705",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-3/0/3 706",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-3/2/0 708",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-3-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-3/2/1 709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-3-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-3/2/2 710",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-3-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lis.pt.geant.net xe-3/2/3 711",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lis.pt.geant.net-xe-3-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10 706 23031",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.0 770 12221 28463",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae10.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.2030 967 29001",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae10.2030",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.3015 733 25881",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae10.3015",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.310 1217 39485",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae10.310",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.333 781 34095",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae10.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.4080 1248 53953",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae10.4080",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.667 1212 39189",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae10.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.700 1233 39709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae10.700",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.930 1095 31209",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae10.930",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae11 707 26279",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae11.1103 859 26277",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae11.1103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae11.333 860 31729",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae11.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae11.667 1249 40457",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae11.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12 1705 48599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.1002 579 38661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.1002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.2260 572 49762",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.2260",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.2361 640 50046",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.2361",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3100 933 49472",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.3100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3101 666 48992",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.3101",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3102 682 48996",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.3102",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3104 990 51712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.3104",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3140 760 49252",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.3140",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3151 758 49258",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.3151",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3160 1709 48716",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.3160",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3179 581 41204",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.3179",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3200 569 39273",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.3200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3202 575 31779",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.3202",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3220 624 50026",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae12.3220",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae13 709 33135",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae13.0 1061 33133",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae13.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae16 712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae16.0 589 27615 34953",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae16.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae16.333 867 51261",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae16.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae16.4080 647 53295",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae16.4080",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae16.4081 650 53287",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae16.4081",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae16.4082 656 53313",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae16.4082",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae16.4083 962 53661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae16.4083",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae16.4090 1182 53147",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae16.4090",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae16.4091 1184 53153",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae16.4091",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae16.4092 1214 53155",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae16.4092",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae16.4093 1254 53159",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae16.4093",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae17 713 35089",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae17.0 1041 35093",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae17.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae18 714 35091",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae18.0 1042 35095",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae18.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae20 716 29379",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae20.0 1019 44327 52202 29457 29375 47075 41709 30865 52845 30861 48862 42453 42441 43537 29729 29595 41671 30857 53497 33201 41943 47243 52761 51243 33205 29707 50164 30841 30831 42153 30837 29593 29377 30845 33211 29467 29463 30833 41785 30869 30855 29459 41881 41871 37973 30867 29589 30871 37365 42905 42909 29455 49228 30835 30843 29461 39345 30849 39017 29465 43545 42663 42325 44249",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae20.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae21 717 36975",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae21.100 1092 22891",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae21.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae21.333 654 34307 31689",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae21.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae21.667 623 33951",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae21.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae22 718 44289",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae22.100 1336 44291",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae22.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae22.1200 1441 46821",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae22.1200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae22.2033 981 51592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae22.2033",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae22.602 1232 53081",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae22.602",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae23 719",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae23.10 932",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae23.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae23.46 947 51632",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae23.46",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae24.0 976",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae24.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae25 617 53213",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae25",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae25.0 633 53211",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae25.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26 722 37391",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.1200 805 46821",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.1200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.2002 869 12835",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.2002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.2013 877 12833",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.2013",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.202 836 12089",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.202",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.203 854 12208",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.203",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.204 862 12094",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.204",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.2110 827 46645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.2110",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.401 797 39139",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.401",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.402 819 39133",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.402",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.411 803 39163",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.411",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.420 789 44445",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.420",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.518 811 26021",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.518",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.519 826 10441",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.519",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.611 866 38919",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.611",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.70 810 42645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.70",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.801 804",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.801",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.802 823 39115",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.802",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.904 832 40525",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae26.904",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae4 591 25349",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae4.0 793 25351",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae5 613 21971",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae5.0 667 21969",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae6 614 45547",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae6.0 1418 45545",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae7 703 29993",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae7.0 958 31343",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae8 704 46819",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae8.0 1428 46815",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae9 705 47793",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae9.0 1675 47791",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ae9.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-1/1/0 851",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-1/3/0 1055",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-1/3/0.2100 662 53407",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-1-3-0.2100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-1/3/0.3104 991 51712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-1-3-0.3104",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/1/0 905",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0 914",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.2016 989 51646",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.2016",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.2021 952",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.2021",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.2050 941 43169",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.2050",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.2126 969 29003",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.2126",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.2128 1150 38421",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.2128",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.220 1425 46407",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.220",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.2210 1432 46647",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.2210",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.2779 999 29485",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.2779",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.3000 973 29169",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.3000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.3001 1003 29535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.3001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.3801 917",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.3801",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.3806 919",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.3806",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.3807 920",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.3807",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.3810 948",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.3810",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.3880 921",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.3880",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.4020 1010 29981",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.4020",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.4040 1051 31075",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.4040",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.4050 1052 31073",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.4050",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.498 768 34399",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.498",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.500 942",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.500",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.524 997 28786",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.524",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.612 1195 38915",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.612",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.700 1234 39709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.700",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.90 653 50212",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.90",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0.902 1243 40169",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-10-3-0.902",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-11/0/2 1652",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-11-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-11/0/5 1653",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-11-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-11/1/2 1654",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-11-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-11/1/5 1655",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-11-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/2 1557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5 1558 28315",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2050 1588 43169",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.2050",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2100 663 53407",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.2100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2101 906",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.2101",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2102 907",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.2102",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2103 909",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.2103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2126 1589 29003",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.2126",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2128 1590 38421",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.2128",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2160 747 53551",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.2160",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2779 1591 29485",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.2779",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3001 1592 29535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.3001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3100 590 49472",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.3100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3803 1593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.3803",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3806 1594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.3806",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3807 1595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.3807",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3810 1596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.3810",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3880 1597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.3880",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.4020 1598 29981",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.4020",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.524 1585 28786",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.524",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.906 1587 40197",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-0-5.906",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/1/2 1559",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/1/5 1560",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-2-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-4/0/2 1294",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-4-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-4/0/5 1295",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-4-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-4/1/2 1296",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-4-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-4/1/2.0 1216",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-4-1-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-4/1/5 1320",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-4-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/2 1203",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5 1204 28249",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.1002 1272 38661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.1002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.111 1268 12439",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.123 1269 30703",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.123",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.2010 1273 30705",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.2010",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.2021 1274",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.2021",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.2023 1275 28895",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.2023",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.2031 1276 30707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.2031",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.2033 982 51592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.2033",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.240 943 43527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.240",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3003 1277 27513",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3140 763 49252",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3140",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3151 769 49258",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3151",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3801 1278",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3801",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3803 1279",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3803",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3805 1280",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3805",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3900 1180 52661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3900",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3902 1193 52687",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3902",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3904 1196 52705",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3904",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3906 1197 52711",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3906",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3909 1200 53149",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3909",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3910 1201 52747",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3910",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3912 1205 52789",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.3912",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.4001 1281 22993 52545",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.4001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.4005 1282 30531",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-0-5.4005",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2 1265",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.104 1284 27973",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-1-2.104",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.123 1285 30703",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-1-2.123",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.1488 1288 31557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-1-2.1488",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.201 1009",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-1-2.201",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.2010 1289 30705",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-1-2.2010",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.2031 1290 30707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-1-2.2031",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.411 1287 39163",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-1-2.411",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/5 1266",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-5-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/0/2 1404",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-9-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/0/2.104 1407 27967",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-9-0-2.104",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/0/2.106 1408",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-9-0-2.106",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/0/2.111 1409 28631",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-9-0-2.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/0/5 1403",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-9-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/2 1405",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-9-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5 1406",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-et-9-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/0 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/1 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/1.132 1437",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-1.132",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/2 594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/3 595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/4 596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/5 597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/6 598",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/7 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/8 600",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/8.10 841 49960",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-8.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/8.11 845",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-8.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/8.12 700 53409",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-8.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/8.996 631",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-8.996",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9 601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.130 821",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.130",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.131 822",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.131",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.201 992",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.201",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.202 993",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.202",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.21 775",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.23 620",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.240 641",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.240",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.242 642",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.242",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.30 890 31457 31469 31465",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.30",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.300 510",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.300",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.301 1346",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.301",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.3019 784 41405",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.3019",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.302 1347",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.302",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.3020 699 41309",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.3020",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.3021 643",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.3021",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.310 729",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.310",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.401 1430",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.401",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.402 1431",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.402",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.95 813",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.95",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.991 711",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-2-9.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/0 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/1 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/2 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/3 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/3.67 616",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-3.67",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/3.68 587",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-3.68",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/4 606",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/5 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/6 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/7 609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/8 610",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/9 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net gr-1/3/0.0 1194",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-gr-1-3-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net irb.999 696",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-1/3/0 1225",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-lt-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-1/3/0.16 1228",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-lt-1-3-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-1/3/0.61 1229",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-lt-1-3-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-7/0/0 1132",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-lt-7-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-7/0/0.12 1137",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-lt-7-0-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-7/0/0.13 1138",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-lt-7-0-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-7/0/0.21 1139",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-lt-7-0-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-0/0/0 621",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-0/0/1 622",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-0/0/1.1001 865",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-0-0-1.1001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-0/0/1.111 1155 42089",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-0-0-1.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-0/0/1.200 864 22959",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-0-0-1.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-0/1/0 625",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-0/1/1 626",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/0 847 43089",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/0.200 710 43213",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-0-0.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/0.201 1013 43979",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-0-0.201",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/0.220 1426 46407",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-0-0.220",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/0.240 944 43527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-0-0.240",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/0.420 1337 44445",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-0-0.420",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/1 848",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/2 849",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/2.702 986 51598",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-0-2.702",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/3 850",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/2/0 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/2/1 551",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/2/2 852",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/2/3 1040",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/0/0 904",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-10-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/0/1 901",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-10-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/0/2 902",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-10-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/0/3 903",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-10-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/2/0 913",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-10-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/2/1 910",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-10-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/2/2 911",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-10-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/2/3 912",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-10-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/0 743",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/1 745",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/2 748",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/2.2200 1342 45105",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-2.2200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/2.2210 1434 46647",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-2.2210",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/3 749",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/4 1449",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/4.0 1001",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/5 1452",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/5.0 1004",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/6 1450",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/6.0 1477",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/7 1451",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/7.0 1478",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-0-7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/0 1457",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/1 1458",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/2 1459",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/3 1460",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/4 1461",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/5 1462 53627",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/5.0 773",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-1-5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/6 1463",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/7 1464",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/0 751",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/1 752",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/2 757",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/2.0 1011",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/3 759",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/3.22 1023",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-3.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/3.902 1024",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-3.902",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/3.906 1025",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-3.906",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/4 1468",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/4.0 1493 28684",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/5 1465",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/5.1500 1494 15829",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-5.1500",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/5.2369 1495 27707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-5.2369",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/5.25 766",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-5.25",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/6 1466",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/6.1225 1502 31056",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-6.1225",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/6.196 1499 24917",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-6.196",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/6.692 1501 21961",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-6.692",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/6.961 1497 43339",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-6.961",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/7 1467",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/7.1007 1506 28027",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-7.1007",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/7.3004 1507 41969",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-7.3004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/7.306 1503 15785",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-7.306",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/7.722 1504 15789",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-7.722",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/7.723 1505 15795",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-2-7.723",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/0 1469",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/1 1470",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/1.1000 1561 41172",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-1.1000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/1.3179 583 41204",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-1.3179",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/2 1471",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/2.100 1564 39049",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-2.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/2.401 1565 39139",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-2.401",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/2.602 1236 53081",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-2.602",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/2.801 1566 39109",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-2.801",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/3 1472 41269",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/3.200 1568 43213",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-3.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/4 1473",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/4.0 774 53629",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/5 1474",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/5.0 776 53631",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/6 1475",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/7 1476",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-3-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/0 652 36783",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/1 648 53627",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/1.0 777",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/2 671",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/2.0 778 53629",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/3 672",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/3.0 779 53631",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/4 669",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/5 676",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/5.4080 588 53953",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-5.4080",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/6 673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/7 674",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/8 675",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-7/0/9 677",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon.uk.geant.net-xe-7-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae12 629 34799",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae12.0 714 34793 28465",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae12.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae16 633",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae16.100 1037",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae16.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae16.101 563",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae16.101",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae16.2001 1773",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae16.2001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae16.300 1161",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae16.300",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae17 634 29569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae17.333 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae17.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae17.500 608 29747 29567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae17.500",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae3 620 42043",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae3.0 1137 42045",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae5 622 47151",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae5.0 1539 47137",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae6 623 45547",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae6.0 1181 45545",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ae6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-1/0/0 748",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-10/0/2 1154",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-10-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-10/0/5 1152",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-10-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-10/1/2 1159",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-10-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-10/1/5 1160",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-10-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-5/0/0 747",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-5-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-7/0/2 1645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-7-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-7/0/5 1646",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-7-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-7/1/2 1647",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-7-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-7/1/5 1648",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-7-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-9/0/2 1532",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-9-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-9/0/5 1533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-9-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-9/1/2 1534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-9-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-9/1/5 1535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-et-9-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0 517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.11 1131",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.200 726",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.21 678",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.22 681",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.250 677",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.250",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.260 836 42523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.260",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.301 1052",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.301",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.302 1053",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.302",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.401 1527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.401",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.402 1528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.402",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.50 691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.50",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.505 1904",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.505",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.991 617",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-0.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/1 518",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/2 519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/2.22 1031",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-2.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/3 520",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/3.220 1812",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-3.220",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/4 521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/5 522",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/6 523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/7 524",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/8 525",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/9 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/0 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/1 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/2 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/3 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/3.252 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-3.252",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/3.260 596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-3.260",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/4 531",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/5 532",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/6 533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/6.0 1058 41819",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/7 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/8 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/8.0 1174",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/9 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/9.0 1175",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-ge-0-1-9.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net gr-7/1/0.0 798",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-gr-7-1-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net irb.252 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-irb.252",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net irb.260 1051",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-irb.260",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net irb.998 960",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-irb.998",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net lt-7/1/0 1855",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-lt-7-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net lt-7/1/0.16 1858",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-lt-7-1-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net lt-7/1/0.17 1902",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-lt-7-1-0.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net lt-7/1/0.61 1859",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-lt-7-1-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net lt-7/1/0.71 1903",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-lt-7-1-0.71",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/0 1019",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/1 1020",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2 1021",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.11 979",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.12 980",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.13 1182",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.14 1183",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.17 1847 49958",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.18 1862",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.19 610 53411",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2.19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.3007 797",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2.3007",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.940 1818",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2.940",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.944 1819",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2.944",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.946 1820",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-2.946",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/3 1022",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/4 1023",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/5 1024",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/5.11 690",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-5.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/5.12 707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-5.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/5.13 661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-5.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/5.14 582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-5.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/5.15 587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-5.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/5.16 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-5.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/5.17 653",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-5.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6 1025",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6.11 575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-6.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6.14 762",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-6.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6.15 561",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-6.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6.16 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-6.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6.17 562",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-6.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6.19 585",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-6.19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6.20 589",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-6.20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6.21 590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-6.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6.22 601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-6.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6.23 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-6.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/7 1026",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/7.0 586",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/8 1027",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/9 1028",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-1-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/0 1565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/0.210 1814",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-0-0.210",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/1 1566",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/2 1572",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/3 1567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/4 1568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/5 1569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/5.13 792 52382",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-0-5.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/6 1570",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/6.12 794 52380",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-0-6.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/7 1571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/0 1573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/0.46 591 51632",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-0.46",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/1 1574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/2 1576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/3 1578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/3.0 1704",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/4 1579",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/5 1580",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/5.501 1706",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-5.501",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/5.502 1707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-5.502",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/6 1575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/6.1003 1709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-6.1003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/7 1577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/7.922 1711",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-7.922",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/7.923 1712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-7.923",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/7.924 1713",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-7.924",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/7.925 1714",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-7.925",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/7.932 1715",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-7.932",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/7.933 1716",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-7.933",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/7.934 1717",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-7.934",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/7.935 1718",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-1-7.935",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/0 1588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/1 1581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/2 1582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/3 1583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/4 1584",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/5 1585",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/6 1586",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7 1587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7.11 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-7.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7.13 580",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-7.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7.14 579",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-7.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7.15 583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-7.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7.16 581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-7.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7.17 578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-7.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7.18 584",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-7.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7.19 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-7.19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7.20 577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-2-7.20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/0 1589",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/0.0 670",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/1 1590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/1.0 671",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/2 1591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/2.22 766",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-2.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/2.904 785 40525",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-2.904",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/3 1592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/4 1593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/5 1594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/6 1595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/7 1596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.lon2.uk.geant.net-xe-2-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae0 614 22035",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae0.0 714 22033",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae1 615 12533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae1.0 744 9473",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae12 644 26947",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae12.111 793 12157",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae12.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae13 651 30071",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae13.293 934 30069 29475",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae13.293",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae13.333 643 31709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae13.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae13.408 677 53133",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae13.408",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae13.411 707 52603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae13.411",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae13.667 780 48756",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae13.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae14 652 43055",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae14.100 1106 43159 43171 43173 52843 43535 43175 44171 46523 43177 51273 51365 47811 51728 51235 43181 43163 43165 43183 43185 43189 51295 47531 43199 51265 51267 43187",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae14.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae2 616 24859",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae2.0 745 24861",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae3 617",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae3.103 747",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae3.103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae3.998 748",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ae3.998",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net dsc.0 779",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-4/0/0 977",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-et-4-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-5/0/0 978",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-et-5-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-8/0/2 1140",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-et-8-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-8/0/5 1141",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-et-8-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-8/1/2 1142",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-et-8-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-8/1/5 1143",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-et-8-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-9/0/2 1138",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-et-9-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-9/0/5 1139",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-et-9-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-9/1/2 1144",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-et-9-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-9/1/5 1145",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-et-9-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/0 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/1 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/2 594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/3 595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/4 596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/5 597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/6 598",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/7 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/8 600",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/9 601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/0 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/1 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/2 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/3 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/3.0 675",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/4 606",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/5 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/6 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/7 609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/8 610 31475",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/8.23 673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-8.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/8.24 674",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-ge-0-3-8.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net irb.999 719",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net lt-0/0/0 693",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net lt-0/0/0.16 901",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net lt-0/0/0.61 902",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/0 726",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-so-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/1 727",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-so-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/2 728",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-so-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/3 729",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-so-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/4 730",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-so-1-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/5 731",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-so-1-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/6 732",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-so-1-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/7 733",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-so-1-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-0/0/0 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-0/0/1 589",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-0/1/0 590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-0/1/1 591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-1/0/0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-1/0/1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-1/1/0 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-1/1/1 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/0/0 572",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/0/1 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/0/2 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/0/3 575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/1/0 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/1/1 577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/1/2 578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/1/3 579",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/2/0 580",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/2/0.0 676",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-2-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/2/1 581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/2/2 582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/2/3 583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/3/0 584",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/3/1 585",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/3/2 586",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/3/3 587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-2-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-3/0/0 767",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-3/0/1 768",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-3/1/0 769",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-3-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-3/1/1 770",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-3-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/0 777",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/0.0 1148 53929",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-0-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/1 778",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/1.0 1149 53929",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-0-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/2 788",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/3 789",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/4 790",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/5 791",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/6 794",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/7 795",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/0 806",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/1 807",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/2 808",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/3 809",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/4 810",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/5 811",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/6 812",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/7 813",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/0 824",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/1 827",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/2 828",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/3 829",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/4 830",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/5 831",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/6 832",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/7 835",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/0 844",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/1 845",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/2 846",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/3 848",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/4 849",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/5 850",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/6 851",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/7 852",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mad.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mad.es.geant.net-xe-7-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae0 560 30953",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae0.0 611 30955",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae1 561 30957",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae1.0 613 30965",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae10 570",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae10.0 649 35197",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae10.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae13 573 38247",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae13.100 632 49046 49234 39439 48515 39169 47681 49122 39935 49218 49048 47263 49224 47533 49140 42321",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae13.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15 575 30051",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.186 696 27409",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.186",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.187 695 27411",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.187",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.188 694 27413",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.188",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.189 693 27415",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.189",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.190 692 27417",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.190",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.196 691 24917",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.196",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.197 690 27451",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.197",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.198 917 27547",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.198",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.2000 663 30749",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.2000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.281 614 39629 30053 29473",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.281",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.333 656 31707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.409 701 52593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.409",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.412 703 52605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.412",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.60 897",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.60",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.667 866 39011",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.75 669",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.75",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.766 705 52779",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.766",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.930 948 31209",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.930",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.931 666",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.931",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.932 674",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.932",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.946 947 35577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.946",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae15.947 1009 43001",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae15.947",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae16 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae17 577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae18 579 53107",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae18.100 675 53109",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae18.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae18.333 676 53111",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae18.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae2 562",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae2.103 699",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae2.103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ae2.998 708",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ae2.998",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net dsc.0 578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net et-2/0/0 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-et-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net et-3/0/0 610",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-et-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net et-4/0/0 912",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-et-4-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/0 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/0.15 865",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-0.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/0.23 622",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-0.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/0.24 624",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-0.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/0.25 637",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-0.25",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/1 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/1.0 625",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/2 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/3 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/4 538",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/5 539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/6 540",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/7 541",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/8 542",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/2/9 543",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/3/0 551",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/3/1 552",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/3/2 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/3/3 544",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/3/4 545",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/3/5 546",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/3/6 547",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/3/7 548",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/3/8 549",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net ge-0/3/9 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net lt-1/0/0 652",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-lt-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net lt-1/0/0.12 655",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-lt-1-0-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net lt-1/0/0.13 657",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-lt-1-0-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net lt-1/0/0.21 658",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-lt-1-0-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net lt-1/0/0.31 659",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-lt-1-0-0.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net lt-3/0/0 891",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-lt-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net lt-3/0/0.16 894",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-lt-3-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net lt-3/0/0.61 895",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-lt-3-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-0/0/0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-0/0/1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-0/1/0 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-0/1/1 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-1/0/0 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-1/0/1 531",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-1/1/0 533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-1/1/1 532",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-1/2/0 956",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-1/2/0.0 958",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-1-2-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-1/2/1 957",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-1/3/0 960",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mar.fr.geant.net xe-1/3/1 961",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mar.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mar.fr.geant.net-xe-1-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae1 616",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae1.103 717",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae1.103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae1.998 718",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae1.998",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae10 682 23977",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae10.1000 687 23979 38633",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae10.1000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae10.1001 712 28103",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae10.1001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae10.111 697 23981",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae10.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae10.25 1145",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae10.25",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae10.333 770 31677 38635",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae10.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae10.4086 721 53519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae10.4086",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae10.4088 664 53439",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae10.4088",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae10.550 1235",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae10.550",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae10.667 738 34997",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae10.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae11 683 29723",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae11.0 731 29709 52206 29719 42077 51229 52847 34431 29727 30807 41055 48181 47077 47813 29721 51237 47073 29713 29711 30813 41787 30805 43465 29725 37363 42915 30879 49226 47535 39043 29715 43455",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae11.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae12 684 31047",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae12.0 766 31045",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae12.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae13 685 38981",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae13.100 848 38973",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae13.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae13.333 865 38975",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae13.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae14 688 48303",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae14.100 1303 48305",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae14.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae14.333 1302 48307",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae14.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae18 692 43109",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae18.52 1259 47199",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae18.52",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae18.53 1255 16957",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae18.53",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae18.55 1253 28477",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae18.55",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae18.667 1258 47197",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae18.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae2 617 22041",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae2.0 656 22039",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae3 618 30953",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae3.0 767 30955",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae4 619 50362",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae4.0 796 50360",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae6 621 49732",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae6.0 1117 49730",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae8 680 49842",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ae8.0 1123 49840",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ae8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-10/0/0 795",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-10-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-11/1/0 1288",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-11-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-11/3/0 1293",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-11-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-2/1/0 965",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-2/3/0 966",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-3/0/0 634",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-4/0/2 1034",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-4-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-4/0/5 1033",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-4-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-4/1/2 1035",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-4-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-4/1/5 1037",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-4-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-5/0/2 1025",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-5-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-5/0/5 1026",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-5-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-5/1/2 1022",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-5-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net et-5/1/5 1024",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-et-5-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/2/0 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/2/1 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/2/2 594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/2/3 595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/2/4 596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/2/5 597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/2/6 598",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/2/7 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/2/8 600",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/2/9 601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/0 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/1 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2.21 750",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2.22 753",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2.23 640 31477",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2.24 677",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2.250 735 42527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2.250",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2.301 759",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2.301",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2.302 764",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2.302",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2.401 765",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2.401",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2.402 768",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2.402",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2.7 772 31479",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2.7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/2.991 653",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-2.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/3 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/4 606",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/5 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/6 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/6.0 762",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/7 609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/8 610",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net ge-0/3/9 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net irb.999 651",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net lt-10/0/0 877",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-lt-10-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net lt-10/0/0.16 885",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-lt-10-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net lt-10/0/0.61 886",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-lt-10-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net lt-3/2/10 781",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-lt-3-2-10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net lt-3/2/10.13 786",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-lt-3-2-10.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net lt-3/2/10.31 787",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-lt-3-2-10.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/0/0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/0/1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/0/2 838",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/0/4 840",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/0/5 841",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/0/6 842",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/0/6.1 919",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-0-6.1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/0/6.2 920",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-0-6.2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/0/6.3 927",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-0-6.3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/0/6.4 932",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-0-6.4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/0/7 843",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/0 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/0.0 903",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/1 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/1.1 935",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-1.1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/1.1001 937",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-1.1001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/1.1002 938",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-1.1002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/1.1003 939",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-1.1003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/2 850",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/3 851",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/3.1 944",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-3.1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/3.1022 945",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-3.1022",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/3.1023 946",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-3.1023",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/3.1024 947",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-3.1024",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/3.1025 948",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-3.1025",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/3.1032 949",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-3.1032",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/3.1033 950",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-3.1033",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/3.1034 952",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-3.1034",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/3.1035 954",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-3.1035",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/4 857",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/5 859",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/6 860",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/1/7 861",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/2/0 907",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/2/1 908",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/2/2 878",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/2/3 864",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/2/4 898",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/2/5 895",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/2/6 899",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/2/7 896",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/3/0 909",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/3/1 910",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/3/2 900",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/3/3 901",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/3/4 902",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/3/5 904",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/3/6 905",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-1/3/7 912",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-1-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-11/0/0 1284",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-11-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-11/0/0.100 1340 48840",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-11-0-0.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-11/0/0.333 1341 48844",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-11-0-0.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-11/0/1 1285",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-11-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-11/0/2 1286",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-11-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-11/0/3 1287",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-11-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-11/2/0 1289",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-11-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-11/2/1 1290",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-11-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-11/2/2 1291",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-11-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-11/2/3 1292",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-11-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-2/0/0 572",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-2/0/1 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-2/0/2 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-2/0/3 575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-2/2/0 580",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-2/2/1 581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-2/2/2 582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mil2.it.geant.net xe-2/2/3 583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.mil2.it.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.mil2.it.geant.net-xe-2-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae1 685",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae1.103 711",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae1.103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae1.998 739",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae1.998",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12 678 21825",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.1382 850 27517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.1382",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.1390 833 51534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.1390",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.1391 874 51536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.1391",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.160 763 11127",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.160",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.161 855 29309",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.161",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.2200 1082 52637",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.2200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.3005 628",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.3005",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.333 751 31711",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.488 937 31557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.488",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.519 762 10441",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.519",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.667 1164 41649",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.854 981 51582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae12.854",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13 684",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.100 811 31139",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae13.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.11 1475 47397",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae13.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.3005 821",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae13.3005",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.333 806 31733",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae13.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.60 631 50060",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae13.60",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.90 755 50212",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae13.90",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae14 686 26739",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae14.111 657 26749",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae14.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae14.116 754 46719",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae14.116",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15 687 29287",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.102 875 12072",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.102",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.1125 889 28776",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.1125",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.1916 1087 52655",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.1916",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2001 885 12225",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.2001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2004 879 12224",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.2004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2015 1083 29519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.2015",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2023 962 37279",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.2023",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.204 877 11619",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.204",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.205 867 11621",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.205",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.207 869 11631",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.207",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.212 871 11623",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.212",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2128 1067 52507",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.2128",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2200 881 18801",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.2200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.221 873 12076",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.221",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2511 883 24293",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.2511",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.300 903 26939",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.300",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3018 1081 41587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.3018",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3020 1080 41579",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.3020",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3151 893 7474",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.3151",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3152 895 26985",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.3152",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3157 518 33753",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.3157",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.32 1246 41226",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.32",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3400 897 27707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.3400",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.350 1099 39489",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.350",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3500 899",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.3500",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3600 901 28752",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.3600",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3901 1451 48097",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.3901",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.498 828 34403",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.498",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.500 858",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.500",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.60 647 50060",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.60",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.610 1071 38923",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.610",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.620 1096 30423",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.620",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.80 1392 42649",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.80",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.903 1210 40539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae15.903",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae16 688 33745",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae17 689 45337",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae17.2128 1068 52507",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae17.2128",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae17.3901 1485 48097",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae17.3901",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae18 690 22291",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae18.2603 749 4111",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae18.2603",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae18.333 748 31717",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae18.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae18.667 577 51441",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae18.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae3 633 12533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae3.0 776 9473",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30 702 52501 41254",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae30",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.2001 964 41293",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae30.2001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3000 1026 41295",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae30.3000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3001 846",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae30.3001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3002 1467",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae30.3002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3003 1468",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae30.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3004 1474",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae30.3004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3006 812",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae30.3006",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3007 1014",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae30.3007",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3008 1060",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae30.3008",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.991 764",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae30.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae4 801",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae4.0 803",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae5 635 47151",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae5.0 783 47137",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae6 637 47499",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae6.0 1425 47503",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ae6.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net dsc.0 841",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-1/0/2 1149",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-1/0/5 1150",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-1-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-1/1/2 1151",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-1-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-1/1/5 1152",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-1-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-10/0/2 997",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-10-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-10/0/5 1001",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-10-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-10/1/2 1002",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-10-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-10/1/5 1003",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-10-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-11/1/0 1198",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-11-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-11/3/0 1203",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-11-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-11/3/0.0 616",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-11-3-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-2/0/2 1165",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-2/0/5 1166",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-2-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-2/1/2 1223",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-2-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-2/1/5 1231",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-2-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-3/0/2 1167",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-3/0/5 1211",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-3-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-3/1/2 1233",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-3-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-3/1/5 1247",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-3-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-9/0/0 838",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-et-9-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.10 1076",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.100 864",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.101 865",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.101",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.102 866",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.102",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.103 905",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.104 913",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.104",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.11 1077",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.201 1401",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.201",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.202 1402",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.202",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.203 1403",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.203",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.204 1404",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.204",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.21 815",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.22 816",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.23 718",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.24 745",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.25 946",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.25",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.250 527 42353",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.250",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.300 1243",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.300",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.40 716",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.40",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.550 834",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.550",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.9 1078",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.903 1212 40539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.903",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.908 1213 40543",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.908",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.991 1079",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-0.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/1 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/2 594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/2.0 785",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/3 595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/3.0 1207",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/4 596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/5 597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/5.0 1204",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/6 598",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/7 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/8 600",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/9 601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/0 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/1 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/2 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/2.0 1206",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-3-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/3 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/4 606",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/5 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/6 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/7 609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/8 610",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/9 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.105 958",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-irb.105",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3000 972",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-irb.3000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3001 665",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-irb.3001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3002 1457",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-irb.3002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3003 1458",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-irb.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3004 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-irb.3004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3006 782",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-irb.3006",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3008 630",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-irb.3008",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.998 949",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-irb.998",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.999 738",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-0/3/10 708",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-lt-0-3-10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-0/3/10.13 712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-lt-0-3-10.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-0/3/10.31 714",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-lt-0-3-10.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-1/1/0 1497",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-lt-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-1/1/0.16 1500",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-lt-1-1-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-1/1/0.61 1501",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-lt-1-1-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net so-7/2/0 911",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-so-7-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-0/0/0 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-0/1/0 590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/0 1194",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/0.11 780",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-0.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/0.12 614",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/0.13 634",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/0.14 772",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-0.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/0.16 779",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/1 1195",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/1.10 987 51654",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-1.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/1.1390 1005",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-1.1390",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/1.30 988 51660",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-1.30",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/1.33 1004 51511 51534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-1.33",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/1.35 996 47397",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-1.35",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/1.37 1012",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-1.37",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/2 1196",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/2.0 767",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/3 1197",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/0 1199",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/0.702 984 51600",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-2-0.702",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/1 1200",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/2 1201",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/3 1202",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-11-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/0 1260",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/0.0 1308",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-0-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/1 1261",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/2 1262",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/3 1263",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/4 1264",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/5 1265",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/6 1266",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/1 1269",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/1.1 1504",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-1.1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/1.2 1505",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-1.2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/1.3 1506",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-1.3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/1.4 1507",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-1.4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/2 1270",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/3 1271",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/3.1 1509",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-3.1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/3.1022 1510",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-3.1022",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/3.1023 1511",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-3.1023",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/3.1024 1512",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-3.1024",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/3.1025 1513",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-3.1025",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/3.2905 1514",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-3.2905",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/4 1272",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/4.1 1516",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-4.1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/4.1001 1517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-4.1001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/4.1002 1518",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-4.1002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/4.1003 1519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-4.1003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/5 1273",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/5.0 1347",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/6 1274",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/6.1220 1349 29547",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-6.1220",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/6.278 1348 20393",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-1-6.278",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/0 1276",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/1 1277",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/2 1278",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/3 1279",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/4 1280",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/5 1281",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/6 1282",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/7 1283",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/0 1284",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/1 1285",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/2 1286",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/2.11 818",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-2.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/2.12 819",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-2.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/2.17 941",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-2.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/2.18 615",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-2.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/3 1287",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/4 1288",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/4.17 933",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-4.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/4.18 768",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-4.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/5 1289",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/5.2100 1526 45107",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-5.2100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/5.2110 1527 46645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-5.2110",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/6 1290",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/7 1291",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-4-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-7/0/0 797",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-7-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-7/0/1 798",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-7-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-7/1/0 799",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-7-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-7/1/1 800",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.par.fr.geant.net-xe-7-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae0 598 16377",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae0.0 627 16379",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11 616 27597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.100 791 27649 28467",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae11.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.111 785 35043",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae11.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.20 782 27515",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae11.20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.200 670",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae11.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.3220 678 50026",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae11.3220",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.333 789 31703",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae11.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae2 797",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae2.0 800",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae3 601 38135",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae3.0 777 38133",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae5 603 31149",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae5.0 762 31151",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ae5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-3/1/0 753",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-et-3-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-3/3/0 764",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-et-3-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-4/0/0 748",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-et-4-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-5/0/0 814",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-et-5-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/0 578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/0.21 610",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/0.22 649",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-0.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/0.23 672",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-0.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/0.24 673 31487",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-0.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/0.3005 710",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-0.3005",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/0.301 796",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-0.301",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/1 579",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/2 580",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/3 581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/3.0 707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/4 582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/5 583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/6 584",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/7 585",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/8 586",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/9 587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/0 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/1 589",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/2 590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/3 591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/4 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/5 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/6 594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net lt-3/3/0 662",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-lt-3-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net lt-3/3/0.16 663",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-lt-3-3-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net lt-3/3/0.61 664",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-lt-3-3-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-0/0/0 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-0/0/1 575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-0/1/0 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-0/1/1 577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/0 558",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/0.100 624 11371",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-0-0.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/0.333 625 31645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-0-0.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/1 559",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/1.0 708",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-0-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/2 560",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/3 561",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/1/0 562",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/1/1 563",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/1/2 564",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/1/3 565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/2/0 566",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/2/1 567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/2/2 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/2/3 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/3/0 570",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/3/1 571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/3/2 572",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/3/3 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-1-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-2/0/0 727",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-2/0/1 728",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-2/1/0 729",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-2/1/1 730",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/0 749",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/0.0 799 51385",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-3-0-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/1 750",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/1.0 798 51381",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-3-0-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/2 751",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/3 752",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/2/0 754",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-3-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/2/1 755",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-3-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/2/2 756",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-3-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/2/3 763",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.poz.pl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.poz.pl.geant.net-xe-3-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae11 669 27551",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae11.111 772 22159",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae11.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae11.1700 1102",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae11.1700",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae11.333 623 31657",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae11.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae11.360 803 38351",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae11.360",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae11.600 636 22157 28499",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae11.600",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae11.601 690 27549",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae11.601",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae11.667 615 33819",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae11.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae12 670 34393",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae12.0 771 36043 36045 36047 36049 41673 46525 42603 36051 36055 53557 36061 36065 34413 34409 36063 51285 51283 36057 51241 39045 42327 48199",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae12.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae2 985 49780",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae2.0 986 49778",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae8 990 49768",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ae8.0 991 49770",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ae8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net dsc.0 868",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-1/1/0 740",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-1/3/0 751",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-3/1/0 754",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-3-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-3/3/0 769",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-3-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-5/0/2 814",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-5-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-5/0/5 815",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-5-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-5/1/2 816",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-5-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-5/1/5 820",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-5-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-7/0/2 915",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-7-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-7/0/5 916",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-7-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-7/1/2 917",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-7-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net et-7/1/5 918",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-et-7-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/0 590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/1 591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/1.250 738 42529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-1.250",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/1.251 734",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-1.251",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/1.252 730",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-1.252",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/2 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/2.0 1034",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/3 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/4 594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/5 595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/6 596",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/7 597",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/8 598",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/2/9 599",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/1 601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/2 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/2.0 637",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/3 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/3.0 1035",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/6 606",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/7 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/8 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9 609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.1021 823",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.1021",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.1022 806",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.1022",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.1023 807",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.1023",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.1024 808",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.1024",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.1025 809",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.1025",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.170 712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.170",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.21 723",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.22 724",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.23 642 31493",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.24 644",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.301 822",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.301",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.302 824",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.302",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.401 825",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.401",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.402 826",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.402",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.60 726",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.60",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.80 614",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.80",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net ge-0/3/9.991 843",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-ge-0-3-9.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net irb.999 653",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net lt-1/3/0 852",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-lt-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net lt-1/3/0.16 853",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-lt-1-3-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net lt-1/3/0.61 854",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-lt-1-3-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net lt-2/2/0 700",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-lt-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net lt-2/2/0.12 705",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-lt-2-2-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net lt-2/2/0.13 706",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-lt-2-2-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net lt-2/2/0.21 707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-lt-2-2-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net lt-2/2/0.31 708",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-lt-2-2-0.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-0/0/0 584",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-0/0/1 585",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-0/1/0 586",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-0/1/1 587",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-1/0/0 721",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-1/0/1 722",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-1/0/2 727",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-1/0/3 729",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-1-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-1/2/0 741",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-1/2/1 742",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-1/2/2 749",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-1-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-1/2/3 750",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-1-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/0/0 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/0/0.0 634",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-0-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/0/1 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/0/2 570",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/0/2.1022 812",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-0-2.1022",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/0/2.1023 1007",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-0-2.1023",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/0/2.1024 1008",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-0-2.1024",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/0/2.1025 1009",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-0-2.1025",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/0/3 571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/0/3.1003 805",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-0-3.1003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/1/0 572",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/1/1 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/1/2 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/1/3 575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/2/0 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/2/1 577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/2/2 578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/2/3 579",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/3/0 580",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/3/1 581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/3/2 582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-2/3/3 583",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-2-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/0/0 736",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/0/1 737",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/0/2 747",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/0/3 748",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/0 758",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/1 763",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/1.11 833",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-1.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/1.12 834",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-1.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/1.13 1000",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-1.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/2 767",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/2.11 1066",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-2.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/2.12 1068",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-2.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/2.13 1002",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-2.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/2.14 1072",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-2.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/2.15 1073",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-2.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/2.19 836",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-2.19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/2.20 837",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-2.20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/2.21 835",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-2.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/2.22 838",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-2.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/3 768",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/3.12 842 52380",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-3.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-3/2/3.16 839 53419",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-3-2-3.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/0/0 931",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/0/1 932",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/0/2 933",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/0/3 934",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/0/4 935",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/0/5 936",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/0/6 937",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/0/7 938",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/1/0 939",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/1/1 940",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/1/2 947",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/1/3 941",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/1/4 943",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/1/5 944",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/1/6 945",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/1/7 946",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/2/0 948",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/2/1 949",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/2/2 950",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/2/3 951",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/2/4 952",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/2/5 954",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/2/6 955",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/2/7 956",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/3/0 957",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/3/1 958",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/3/2 959",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/3/3 960",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/3/4 961",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/3/5 962",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/3/6 963",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.pra.cz.geant.net xe-8/3/7 964",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.pra.cz.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.pra.cz.geant.net-xe-8-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae11 565 37389",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae11.100 644 16039",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ae11.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae11.333 609 31697",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ae11.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae7 561 28215",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ae7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae7.0 583 21621",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ae7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae8 562 31461",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ae8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae8.0 639 31463",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ae8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net dsc.0 547",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/0 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/0.1 539 8809",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-0.1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/0.2 542 28437",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-0.2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/0.334 548 31649",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-0.334",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/1 598",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/2 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/3 600",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/3.21 623",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-3.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/3.22 624",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-3.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/3.60 627",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-3.60",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/4 601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/4.0 632",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/5 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/6 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/7 606",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/8 607",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/9 608",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/0 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/1 612",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/2 613",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/3 614",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/4 615",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/5 616",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/6 617",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/7 619",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/8 620",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/9 622",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net lt-0/0/0 659",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net lt-0/0/0.16 662",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net lt-0/0/0.61 663",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-0/0/0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-0/0/1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-0/1/1 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/0/0 634",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/0/1 633",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/0/1.100 543 30985",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-1-0-1.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/0/1.333 549 31647",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-1-0-1.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/1/0 636",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/2/0 645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-1-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/2/1 646",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-1-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/3/0 672",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-1-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/3/1 673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-1-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/0/0 689",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/0/1 690",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/0/2 691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/0/3 692",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/0/4 693",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/0/5 694",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/0/6 695",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/0/7 696",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/1/0 697",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/1/1 698",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/1/2 699",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/1/3 700",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/1/4 701",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/1/5 702",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/1/6 703",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/1/7 704",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/2/0 705",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/2/1 706",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/2/2 707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/2/3 708",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/2/4 709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/2/5 710",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/2/6 711",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/2/7 712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/3/0 713",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/3/1 714",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/3/2 715",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/3/3 716",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/3/4 717",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/3/5 718",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/3/6 719",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/3/7 720",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.sof.bg.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.sof.bg.geant.net-xe-2-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae0 653 39795",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae0.0 685 39797",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae1 654 25405",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae1.0 748 25407",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae10 690 49230 28423 23739",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae10.0 661 11229 51403 41711 51373 28221 25771 41675 28305 48517 51227 28303 21989 51239 28401 12273 33359 11167 42333 28361 41789 28301 11213 41883 41873 37359 42917 38567 51247 25773 37593 42329",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae10.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae11 691 23665",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae11.100 715 23663 28485",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae11.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae11.111 814 12431",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae11.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae11.333 779 31643",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae11.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae11.360 815 38283",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae11.360",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae12 692 27637",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae12.100 841 19595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae12.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae12.333 840 31651",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae12.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae14 694 33143",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae14.0 853 33141",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae14.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae15 695 38349",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae15.51 831 31467 28475",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae15.51",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae15.52 830 31635",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae15.52",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae15.667 1024 41827",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae15.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae16 696 33351",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae16.0 722 33349",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae16.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae17 697 37311",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae17.100 880 22593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae17.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae17.333 622 31699",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae17.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae18 578 49674",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae18.100 585 28493",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae18.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae18.333 586 49982",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae18.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae19 699 51315",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae19.0 813 51367",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae19.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae20 700 39339",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae20.100 843 52324",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae20.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae20.333 844 52326",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae20.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae20.360 845 34093",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae20.360",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae21 701 52615",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae21.100 919 52609",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae21.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae21.111 625 52641",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae21.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae21.333 918 52651 52611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae21.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae23 758 49780",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae23.0 759 49778",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae23.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae24 704 39953",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae24.0 967 39951",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae24.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae25 705 40295",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae25",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae25.0 942 40163",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae25.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae27 707 41087",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae27",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae27.0 975 41089",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae27.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae29 709 45471",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae29",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae29.0 1140 12111",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae29.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae3 656 38135",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae3.0 916 38133",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae4 657 52509",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae4.0 752 29927",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae7 687 28215",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae7.0 666 21621",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae8 751 49842",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae8.0 753 49840",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae9 689 29929",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ae9.0 811 29951",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ae9.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-10/0/2 566",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-10-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-10/0/5 567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-10-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-10/1/2 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-10-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-10/1/5 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-10-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-11/1/0 864",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-11-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-11/3/0 869",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-11-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-3/0/0 628",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-8/1/0 991",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-8-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-8/3/0 996",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-8-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-9/0/2 564",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-9-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-9/0/5 565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-9-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-9/1/2 570",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-9-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net et-9/1/5 571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-et-9-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/2/0 633",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/2/1 634",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/2/2 635",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/2/3 636",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/2/4 637",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/2/5 638",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/2/6 639",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/2/7 640",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/2/8 641",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/2/9 642",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/0 643",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/1 644",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/2 645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/2.21 782",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-2.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/2.22 783",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-2.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/2.23 740",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-2.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/2.24 778",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-2.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/2.301 1188",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-2.301",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/2.302 1189",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-2.302",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/2.401 1190",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-2.401",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/2.402 1191",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-2.402",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/2.60 785",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-2.60",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/2.991 659",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-2.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/3 646",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/4 647",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/5 648",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/6 649",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/7 650",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/8 651",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net ge-0/3/9 652",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net irb.999 683",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net lt-11/1/0 956",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-lt-11-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net lt-11/1/0.16 959",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-lt-11-1-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net lt-11/1/0.61 960",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-lt-11-1-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net lt-4/3/0 1119",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-lt-4-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net lt-4/3/0.12 1122",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-lt-4-3-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net lt-4/3/0.13 1123",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-lt-4-3-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net lt-4/3/0.21 1124",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-lt-4-3-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net lt-4/3/0.31 1125",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-lt-4-3-0.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-0/0/0 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-0/0/1 589",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-0/1/0 590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-0/1/1 591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-11/0/0 860",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-11-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-11/0/1 861",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-11-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-11/0/2 862",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-11-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-11/0/3 863",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-11-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-11/2/0 865",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-11-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-11/2/1 866",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-11-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-11/2/2 867",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-11-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-11/2/3 868",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-11-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/0/0 1038",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/0/1 1039",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/0/1.0 1071",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-0-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/0/2 1040",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/0/3 1041",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/0/4 1042",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/0/5 1043",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/0/6 1044",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/0/7 1045",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/1/0 1046",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/1/1 1047",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/1/2 1048",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/1/3 1049",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/1/4 1050",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/1/5 1051",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/1/6 1052",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/1/7 1053",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/2/0 1054",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/2/1 1055",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/2/2 1056",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/2/3 1057",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/2/4 1058",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/2/5 1059",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/2/6 1060",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/3/0 1065",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/3/1 1062",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/3/2 1063",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/3/3 1064",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/3/4 1066",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/3/5 1067",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/3/6 1068",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-4/3/7 1069",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-4-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-7/0/0 824",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-7-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-7/1/0 827",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-7-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-7/1/1 826",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-7-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-8/0/0 987",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-8-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-8/0/1 988",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-8-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-8/0/2 989",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-8-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-8/0/3 990",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-8-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-8/2/0 992",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-8-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-8/2/1 993",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-8-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-8/2/2 994",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-8-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.vie.at.geant.net xe-8/2/3 995",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx1.vie.at.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx1.vie.at.geant.net-xe-8-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ae0 520 39791",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ae0.0 630 39793",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ae10 530 40107",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ae10.100 578 23193 28495 10163",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ae10.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ae10.333 595 31681",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ae10.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ae10.667 698 42889",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ae10.667",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ae3 523 22041",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ae3.0 685 22039",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net dsc.0 555",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/0 646",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/1 647 31409",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/1.21 659",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-1.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/1.22 660",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-1.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/1.23 661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-1.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/1.24 662",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-1.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/1.60 665",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-1.60",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/2 648",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/3 649",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/4 650",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/5 651",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/6 652",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/7 653",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/8 654",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/2/9 655",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/3/0 672",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/3/1 673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/3/2 674",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/3/3 675",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/3/4 676",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/3/5 677",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/3/6 678",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/3/7 679",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/3/8 680",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net ge-2/3/9 681",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-ge-2-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net lt-1/0/0 622",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-lt-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net lt-1/0/0.16 625",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-lt-1-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net lt-1/0/0.61 626",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-lt-1-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-0/0/0 516",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-0/0/1 517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-0/1/0 518",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-0/1/1 519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-1/0/0 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-1/0/1 570",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-1/1/0 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-1/1/1 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-2/0/0 642",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-2/0/0.1006 693 27455",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-2-0-0.1006",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-2/0/0.111 686 39095",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-2-0-0.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-2/0/0.1225 694 31056",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-2-0-0.1225",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-2/0/0.692 690 21961",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-2-0-0.692",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-2/0/0.695 688 27655",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-2-0-0.695",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-2/0/0.700 691 29835",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-2-0-0.700",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-2/0/0.705 692 27449",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-2-0-0.705",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-2/0/1 643",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-2/1/0 644",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-2/1/1 645",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-3/0/0 731",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-3/0/1 732",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-3/0/2 733",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-3/0/3 734",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-3/0/4 735",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-3-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-3/0/5 736",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-3-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-3/0/6 737",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-3-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-3/0/7 738",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-3-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-3/0/8 739",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-3-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.ath.gr.geant.net xe-3/0/9 740",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.ath.gr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.ath.gr.geant.net-xe-3-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ae0 594 17633",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ae0.0 604 17635",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ae12 623",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ae12.0 738 35195",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ae12.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ae13 624 38829",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ae13.420 769 20133",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ae13.420",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ae13.421 768 31721",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ae13.421",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ae13.422 805 39441",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ae13.422",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ae3 597 52509",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ae3.0 615 29927",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net dsc.0 843",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/0 558",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/1 559",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/1.0 729",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/2 560",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/3 561",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/4 562",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/5 563",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/6 564",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/7 565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/7.3500 693",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-7.3500",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/8 566",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/8.0 688 42519",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/2/9 567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/3/0 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/3/1 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/3/2 570",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/3/3 571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/3/4 572",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/3/5 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/3/6 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/3/7 575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/3/8 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net ge-0/3/9 577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net irb.999 614",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net lt-0/0/0 833",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net lt-0/0/0.16 834",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net lt-0/0/0.61 835",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net lt-2/2/0 813",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-lt-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net lt-2/2/0.12 791",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-lt-2-2-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net lt-2/2/0.13 792",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-lt-2-2-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net lt-2/2/0.21 793",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-lt-2-2-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net lt-2/2/0.31 794",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-lt-2-2-0.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-0/0/0 554",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-0/0/1 555",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-0/1/0 556",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-0/1/1 557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-1/0/0 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-1/0/1 551",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-1/1/0 552",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-1/1/1 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/0 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/1 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/2 625",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/3 722",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/4 723",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/5 724",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/6 725",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/7 726",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/8 727",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/8.13 797",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-8.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/8.14 850",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-8.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/9 728",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/9.21 895",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-9.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/0/9.23 898",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-0-9.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/2/0 762",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bra.sk.geant.net xe-2/3/0 763",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bra.sk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bra.sk.geant.net-xe-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ae0 580 25349",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ae0.0 590 25351",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ae1 581 24337",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ae1.0 653 24339",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ae12 597 34951",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ae12.2 687 24369",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ae12.2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net dsc.0 705",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/0 558",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/1 559",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/1.1025 717 28709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-1.1025",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/1.1125 716 28776",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-1.1125",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/1.1175 714 28774",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-1.1175",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/1.1176 715 51465",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-1.1176",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/1.300 660 26939",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-1.300",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2 560",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2.1001 632 27409",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2.1001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2.1002 633 27411",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2.1002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2.1003 634 27413",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2.1003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2.1004 635 27415",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2.1004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2.1005 636 27417",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2.1005",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2.1006 655 27455",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2.1006",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2.1007 706 28027",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2.1007",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2.1008 713 30423",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2.1008",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2.1290 678 34195",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2.1290",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2.197 648 27451",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2.197",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/2.705 652 27449",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-2.705",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/3 561",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/4 562",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/5 563",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/6 564",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/7 565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/8 566",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/2/9 567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/3/0 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/3/1 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/3/2 570",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/3/3 571",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/3/4 572",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/3/5 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/3/6 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/3/7 575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/3/8 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net ge-0/3/9 577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net irb.170 727",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-irb.170",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net irb.999 650",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net lt-0/0/0 709",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net lt-0/0/0.16 712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net lt-0/0/0.61 728",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-0/0/0 554",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-0/0/1 555",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-0/1/0 556",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-0/1/1 557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-1/0/0 546",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-1/0/1 547",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-1/0/1.0 645 28684",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-1-0-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-1/1/0 548",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-1/1/1 549",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-2/0/0 671",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-2/0/1 672",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-2/1/0 673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.bru.be.geant.net xe-2/1/1 674",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.bru.be.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.bru.be.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae0 740",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae0.0 741",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae1 742",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae1.0 743",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10 754",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.1000 799",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.1000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.103 787",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.104 788",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.104",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.105 789",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.105",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.203 790",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.203",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.205 961",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.205",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.2102 800",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.2102",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.304 792",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.304",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.360 1029",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.360",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.620 802",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.620",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.666 793",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.666",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.700 794",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.700",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae10.779 797",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae10.779",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae16 1226",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae2 984",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae2.0 985",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae3 836",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae3.0 838",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30 694",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30.2001 986",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30.2001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30.3000 1018",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30.3000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30.3001 987",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30.3001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30.3002 989",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30.3002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30.3003 990",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30.3004 991",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30.3004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30.3005 992",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30.3005",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30.3006 993",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30.3006",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30.3007 994",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30.3007",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30.3008 995",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30.3008",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae30.991 981",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae30.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae31 1063",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae31.2000 1064",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae31.2000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae4 839",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ae4.0 841",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ae4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net dsc.0 511",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net et-3/0/4 1059",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-et-3-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net et-3/0/4.0 1221",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-et-3-0-4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net et-3/1/4 1069",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-et-3-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net et-9/0/2 745",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-et-9-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net et-9/0/5 744",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-et-9-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net et-9/1/2 748",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-et-9-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net et-9/1/5 749",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-et-9-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-2/2/0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-2/2/0.100 804",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-2-2-0.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-2/2/0.333 805",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-2-2-0.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-2/2/0.501 806",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-2-2-0.501",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-2/2/0.902 756",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-2-2-0.902",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-2/2/0.997 809",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-2-2-0.997",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-2/2/0.999 808",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-2-2-0.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-2/2/1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-2/2/1.100 825",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-2-2-1.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-2/2/2 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-8/2/0 1088",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-8-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-8/2/0.100 1119",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-8-2-0.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-8/2/0.333 1120",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-8-2-0.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-8/2/0.501 1121",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-8-2-0.501",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-8/2/0.902 1122",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-8-2-0.902",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-8/2/0.997 1123",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-8-2-0.997",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-8/2/0.999 1124",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-8-2-0.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-8/2/1 1079",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-8-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-8/2/1.100 1126",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-8-2-1.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net ge-8/2/2 1080",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-ge-8-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net gr-0/0/0.0 758",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-gr-0-0-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net gr-9/0/0.0 1209",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-gr-9-0-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net irb.260 820",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-irb.260",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net irb.3000 834",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-irb.3000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net irb.3001 966",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-irb.3001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net irb.3002 760",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-irb.3002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net irb.3003 803",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-irb.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net irb.3004 1019",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-irb.3004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net irb.3006 1020",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-irb.3006",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-0/0/0 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-0/0/0.12 1023",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-0-0-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-0/0/0.13 1024",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-0-0-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-0/0/0.16 584",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-0/0/0.17 968",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-0-0-0.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-0/0/0.18 827",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-0-0-0.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-0/0/0.21 1027",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-0-0-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-0/0/0.31 1028",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-0-0-0.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-0/0/0.61 585",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-0/0/0.71 988",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-0-0-0.71",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-0/0/0.81 828",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-0-0-0.81",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-9/0/0 1206",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-9-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-9/0/0.12 1210",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-9-0-0.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-9/0/0.13 1211",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-9-0-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-9/0/0.16 1212",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-9-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-9/0/0.17 1213",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-9-0-0.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-9/0/0.18 1214",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-9-0-0.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-9/0/0.21 1218",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-9-0-0.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-9/0/0.31 1219",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-9-0-0.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-9/0/0.61 1215",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-9-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-9/0/0.71 1216",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-9-0-0.71",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net lt-9/0/0.81 1217",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-lt-9-0-0.81",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-0/0/0 633",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-0/2/0 644",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-5/0/0 665",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-5-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-5/0/1 666",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-5-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-5/0/3 668",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-5-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-5/1/0 669",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-5-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-5/1/1 670",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-5-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-8/0/1 769",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-8-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-8/0/2 770",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-8-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-8/0/3 822",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-8-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-8/0/4 829",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-8-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-8/0/5 851",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-8-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-8/0/6 852",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-8-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-8/0/8 964",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-8-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lab.office.geant.net xe-8/0/9 965",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lab.office.geant.net-xe-8-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae0 536 22035",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae0.0 566 22033",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae1 537 22577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae1.0 625 22193",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae10 570 28599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae10.1930 600 14185 28487 8784",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae10.1930",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae10.1932 599 39901",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae10.1932",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae10.1945 738 53141",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae10.1945",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae10.1947 749 53143",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae10.1947",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae10.333 614 31673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae10.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae2 538",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae2.103 735",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae2.103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae2.998 736",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae2.998",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae3 539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ae3.0 756",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net dsc.0 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net et-3/1/0 699",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-et-3-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net et-3/3/0 704",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-et-3-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net et-4/0/2 654",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-et-4-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net et-4/0/5 683",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-et-4-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net et-4/1/2 801",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-et-4-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net et-4/1/5 802",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-et-4-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net et-5/0/2 773",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-et-5-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net et-5/0/5 774",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-et-5-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net et-5/1/2 799",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-et-5-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net et-5/1/5 800",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-et-5-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/2/1 546",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/2/2 548",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/2/3 549",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/2/4 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/2/5 551",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/2/6 552",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/2/7 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/2/8 554",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/2/9 555",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/0 556",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/1 557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/2 558",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/3 559",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/4 560",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/5 561",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/6 562",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/7 563",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/7.0 713",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-7.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/8 564",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/8.0 714",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-8.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/9 565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net ge-0/3/9.0 620",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-ge-0-3-9.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net lt-0/0/0 647",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net lt-0/0/0.16 650",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net lt-0/0/0.61 651",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-0/0/0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-0/0/1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-0/1/0 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-0/1/1 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-1/0/0 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-1/0/1 531",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-1/1/0 532",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-1/1/1 533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-1/1/1.0 621",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-1-1-1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-2/0/0 668",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-2/0/1 669",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-2/1/0 671",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-2/1/1 670",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-3/0/0 695",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-3/0/1 696",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-3/0/2 697",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-3/0/3 698",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-3/2/0 700",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-3-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-3/2/1 701",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-3-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-3/2/2 702",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-3-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lis.pt.geant.net xe-3/2/3 703",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lis.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lis.pt.geant.net-xe-3-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ae10 607 23657",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ae10.100 603 23655 28483",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ae10.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ae10.111 723 37517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ae10.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ae10.333 698 31639",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ae10.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ae10.550 753",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ae10.550",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ae2 586 50509",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ae2.0 665 50507",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ae4 588 50362",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ae4.0 678 50360",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ae4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net dsc.0 693",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net et-3/1/0 817",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-et-3-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net et-3/3/0 822",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-et-3-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net et-4/1/0 807",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-et-4-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net et-4/3/0 812",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-et-4-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net et-5/1/0 775",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-et-5-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net et-5/3/0 780",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-et-5-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/2/0 562",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/2/1 563",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/2/2 564",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/2/3 565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/2/4 566",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/2/5 567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/2/6 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/2/7 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/2/8 570",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/2/9 571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/3/0 572",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/3/1 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/3/2 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/3/3 575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/3/4 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/3/5 577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/3/6 578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/3/7 579",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/3/8 580",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net ge-0/3/9 581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net irb.999 663",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net lt-0/0/0 737",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net lt-0/0/0.16 740",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net lt-0/0/0.61 741",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net lt-0/2/10 685",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-lt-0-2-10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net lt-0/2/10.13 691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-lt-0-2-10.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net lt-0/2/10.31 692",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-lt-0-2-10.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-0/0/0 558",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-0/0/1 559",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-0/1/0 560",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-0/1/1 561",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-1/0/0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-1/0/1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-1/1/0 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-1/1/1 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-2/0/0 710",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-2/0/1 711",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-2/1/0 713",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-2/1/1 712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-2/2/0 744",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-2/2/1 745",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-2/3/0 746",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-2/3/1 747",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-2-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-3/0/0 813",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-3/0/1 814",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-3/0/2 815",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-3/0/3 816",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-3/2/0 818",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-3-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-3/2/1 819",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-3-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-3/2/2 820",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-3-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-3/2/3 821",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-3-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-4/0/0 803",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-4-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-4/0/1 804",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-4-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-4/2/0 808",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-4-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-4/2/1 809",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-4-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-4/2/2 810",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-4-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-4/2/3 811",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-4-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-5/0/0 771",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-5-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-5/0/1 772",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-5-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-5/0/2 773",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-5-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-5/0/3 774",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-5-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-5/2/0 776",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-5-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-5/2/1 777",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-5-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-5/2/2 778",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-5-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.lju.si.geant.net xe-5/2/3 779",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.lju.si.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.lju.si.geant.net-xe-5-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ae11 618 26179",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ae11.333 652 31653",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ae11.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ae11.36 660 26181 28505",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ae11.36",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ae11.37 659 27503",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ae11.37",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ae2 586 25405",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ae2.0 677 25407",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ae4 588 25409",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ae4.0 645 25411",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ae4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net dsc.0 649",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/2/0 578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/2/1 579",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/2/2 580",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/2/3 581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/2/4 582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/2/5 583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/2/6 594",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/2/7 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/2/8 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-2-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/2/9 605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-2-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/3/0 642",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/3/1 653",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/3/2 654",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/3/3 655",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/3/4 656",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/3/5 657",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/3/5.0 683 28535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-3-5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/3/6 671",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/3/7 673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/3/8 679",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-3-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net ge-0/3/9 681",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-ge-0-3-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net irb.999 674",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-irb.999",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net lt-0/0/0 710",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net lt-0/0/0.16 713",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net lt-0/0/0.61 714",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-0/0/0 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-0/0/1 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-0/1/0 572",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-0/1/1 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-1/0/0 548",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-1/0/1 549",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-1/1/0 552",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-1-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-1/1/1 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-1-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/0/0 731",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/0/1 732",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/0/2 733",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/0/3 734",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/0/4 735",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/0/5 736",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/0/6 737",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/0/7 738",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/1/0 739",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/1/1 740",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/1/2 741",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/1/3 742",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/1/4 743",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/1/5 744",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/1/6 745",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/1/7 746",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/2/0 747",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/2/1 748",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/2/2 749",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/2/3 750",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-2-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/2/4 751",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-2-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/2/5 752",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-2-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/2/6 753",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-2-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/2/7 754",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-2-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/3/0 762",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/3/1 755",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-3-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/3/2 756",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/3/3 757",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/3/4 758",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-3-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/3/5 759",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-3-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/3/6 760",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-3-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx2.zag.hr.geant.net xe-2/3/7 761",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx2.zag.hr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx2.zag.hr.geant.net-xe-2-3-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae1 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae1.0 590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10 546",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.1000 577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.1000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.101 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.101",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.1012 557",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.1012",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.102 551",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.102",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.106 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.106",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.201 552",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.201",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.202 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.202",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.206 575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.206",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.211 554",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.211",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.212 555",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.212",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.301 595",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.301",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.302 556",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.302",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae10.700 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae10.700",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae2 591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae2.0 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae31 629",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae31.2000 633",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae31.2000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae4 601",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net ae4.0 603",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-ae4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net dsc.0 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net et-0/0/0 542",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-et-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net et-0/0/1 518",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-et-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net gr-0/0/0.0 578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-gr-0-0-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net lt-0/0/0 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net lt-0/0/0.16 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net lt-0/0/0.61 541",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net xe-0/1/0 522",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net xe-0/1/1 523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net xe-0/1/2 524",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-xe-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net xe-0/1/4 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-xe-0-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net xe-0/1/6 547",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-xe-0-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx3.lab.office.geant.net xe-0/1/7 548",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx3.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx3.lab.office.geant.net-xe-0-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net ae0 562",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net ae0.0 564",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net ae2 559",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net ae2.0 560",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net ae31 578",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-ae31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net ae31.2000 587",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-ae31.2000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net dsc.0 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net et-0/0/0 572",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-et-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net et-0/0/1 518",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-et-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net lt-0/0/0 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net lt-0/0/0.16 554",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net lt-0/0/0.61 555",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net xe-0/1/6 535",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-xe-0-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx4.lab.office.geant.net xe-0/1/7 536",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx4.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx4.lab.office.geant.net-xe-0-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae0 672",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae0.0 673",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae1 674",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae1.0 675",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae2 676",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae2.0 677",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae3 678",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae30 680",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae30",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae30.2001 682",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae30.2001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae30.3000 683",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae30.3000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae30.3001 684",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae30.3001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae30.3002 685",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae30.3002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae30.3003 686",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae30.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae30.3004 687",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae30.3004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae30.3006 688",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae30.3006",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae30.3007 689",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae30.3007",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae30.3008 690",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae30.3008",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae30.991 681",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae30.991",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae31 807",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ae31.2000 812",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ae31.2000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net dsc.0 692",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net et-0/0/4 526",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-et-0-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net et-0/1/4 528",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-et-0-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net et-2/0/0 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-et-2-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net et-3/1/0 635",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-et-3-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net et-3/3/0 640",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-et-3-3-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net et-5/2/0 604",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-et-5-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-0/0/0 521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-0/0/0.207 724",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-0-0-0.207",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-0/0/0.502 725",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-0-0-0.502",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-0/0/0.900 726",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-0-0-0.900",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-0/0/0.901 727",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-0-0-0.901",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-0/0/0.903 728",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-0-0-0.903",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-0/0/1 522",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-0/0/2 523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-4/2/0 844",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-4-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-4/2/0.207 845",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-4-2-0.207",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-4/2/0.502 846",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-4-2-0.502",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-4/2/0.900 847",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-4-2-0.900",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-4/2/0.901 848",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-4-2-0.901",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-4/2/0.903 849",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-4-2-0.903",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-4/2/1 835",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-4-2-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net ge-4/2/2 836",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-ge-4-2-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net irb.3000 694",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-irb.3000",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net irb.3001 695",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-irb.3001",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net irb.3002 696",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-irb.3002",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net irb.3003 697",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-irb.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net irb.3004 698",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-irb.3004",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net irb.3006 699",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-irb.3006",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-0/0/0 712",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-0/0/0.13 804",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-0-0-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-0/0/0.14 805",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-0-0-0.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-0/0/0.16 715",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-0/0/0.18 719",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-0-0-0.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-0/0/0.31 803",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-0-0-0.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-0/0/0.41 801",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-0-0-0.41",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-0/0/0.61 716",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-0/0/0.81 720",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-0-0-0.81",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-4/0/0 819",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-4-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-4/0/0.13 824",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-4-0-0.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-4/0/0.14 825",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-4-0-0.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-4/0/0.16 826",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-4-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-4/0/0.18 828",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-4-0-0.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-4/0/0.31 832",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-4-0-0.31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-4/0/0.41 833",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-4-0-0.41",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-4/0/0.61 829",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-4-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net lt-4/0/0.81 831",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-lt-4-0-0.81",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net xe-1/0/0 618",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net xe-1/3/2 629",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-xe-1-3-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net xe-1/3/3 630",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-xe-1-3-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net xe-3/0/0 631",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net xe-3/2/0 636",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-xe-3-2-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net xe-3/2/0.0 795",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-xe-3-2-0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net xe-4/0/1 606",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-xe-4-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net xe-4/0/2 607",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-xe-4-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net xe-4/0/3 608",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-xe-4-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net xe-4/0/8 613",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-xe-4-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx5.lab.office.geant.net xe-4/0/9 614",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "mx5.lab.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-mx5.lab.office.geant.net-xe-4-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae0 623 41393 43349 52500",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae1 624",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae10 675",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae11 678",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae12 679",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae13 680 44345",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae14 687 48491",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae15 578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae16 581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae17 612",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae2 625",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae3 626",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae4 627",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae5 628",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae6 629",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae7 630",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae8 631",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net ae9 632",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-ae9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/0 508",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/1 509",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/10 522",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/11 523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/12 672",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/13 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/14 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/15 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/16 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/18 532",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/19 533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/2 511",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/20 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/21 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/22 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/23 538",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/24 539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/3 512",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/4 514",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/44 566",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-44",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/5 515",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/6 516",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/7 518",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/8 519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-0/0/9 520",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-0-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/0 638",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/1 503",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/10 653",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/11 655",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/12 657",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/13 658",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/14 661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/15 669",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/16 643",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/18 660",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/19 662",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/2 524",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/21 692",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/23 685",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/24 715",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/3 571",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/4 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/44 659",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-44",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/5 642",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/6 656",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/7 667",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/8 644",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.fra.de.geant.net xe-1/0/9 652",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.fra.de.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.fra.de.geant.net-xe-1-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae1 590",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae11 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae12 591",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae13 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae14 593",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae15 655",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae16 649",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae17 650",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae18 651",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae2 579",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae21 654",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae22 656",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae23 657",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae26 660",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae26",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae27 661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae27",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae28 662",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae28",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae3 580",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae30 664 48491",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae30",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae31 665",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae31",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae4 581",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae5 582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae6 583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae7 584",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ae8 585",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ae8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ge-0/0/36 620",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ge-0-0-36",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ge-0/0/37 621",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ge-0-0-37",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ge-0/0/38 622",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ge-0-0-38",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ge-1/0/36 703",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ge-1-0-36",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ge-1/0/37 707",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ge-1-0-37",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net ge-1/0/38 705",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-ge-1-0-38",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/0 512",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/1 513",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/12 515",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/13 516",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/14 524",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/15 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/16 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/17 695",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/18 618",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/19 619",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/2 520",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/24 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/26 532",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-26",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/27 697",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-27",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/28 699",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-28",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/29 701",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-29",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/3 522",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/4 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/44 718",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-44",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/45 720",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-45",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/46 678",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-46",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/47 679",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-47",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/5 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/6 614",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-0/0/7 617",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-0-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/0 523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/1 519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/12 533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/13 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/14 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/15 539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/16 541",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/17 682",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/18 647",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/19 639",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/2 521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/24 545",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/26 551",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-26",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/27 689",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-27",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/28 691",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-28",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/29 693",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-29",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/44 641",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-44",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/45 728",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-45",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/46 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-46",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/47 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-47",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/6 635",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.lon2.uk.geant.net xe-1/0/7 643",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.lon2.uk.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.lon2.uk.geant.net-xe-1-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae0 620 52501 41254",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae1 621",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae10 724",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae11 726",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae12 729",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae13 718 44345",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae15 762",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae16 760",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae17 761",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae2 622",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae3 623",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae4 624",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae5 625",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae6 626",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae7 627",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae8 628",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net ae9 629",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-ae9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/0 508",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/1 509",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/10 521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/11 523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/12 524",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/13 525",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/14 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/15 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/16 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/18 532",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/19 533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/2 511",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/20 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/21 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/22 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/23 538",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/24 539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/3 512",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/4 513",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/45 567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-45",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/5 515",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/6 516",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/7 517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/8 519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-0/0/9 520",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-0-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/0 572",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/1 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/10 660",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/11 662",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/12 663",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/13 664",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/14 695",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/15 708",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/16 643",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/18 683",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/19 684",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/2 611",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/21 710",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/23 714",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/24 757",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/3 631",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/4 634",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/45 696",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-45",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/5 635",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/6 670",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/7 704",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/8 642",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD qfx.par.fr.geant.net xe-1/0/9 659",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "qfx.par.fr.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-qfx.par.fr.geant.net-xe-1-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net ae1 676",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net ae1.103 682 709868",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-ae1.103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net ae1.998 684 709869",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-ae1.998",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net ae2 672",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net ae2.0 675",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net ae4 688",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-ae4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net ae4.0 689",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-ae4.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net dsc.0 511",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net et-0/0/2 664",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-et-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net et-0/0/5 665",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-et-0-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net et-0/1/2 670",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-et-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net et-0/1/5 671",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-et-0-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net et-1/0/2 666",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-et-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net et-1/0/5 667",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-et-1-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net et-1/1/2 668",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-et-1-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net et-1/1/5 669",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-et-1-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net lt-0/0/0 525",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net lt-0/0/0.16 531",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net lt-0/0/0.61 532",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net xe-3/0/0 654",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net xe-3/0/1 655",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net xe-3/0/2 656",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net xe-3/0/3 657",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net xe-3/0/4 658",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-xe-3-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net xe-3/0/5 659",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-xe-3-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net xe-3/0/6 660",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-xe-3-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net xe-3/0/7 661",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-xe-3-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net xe-3/0/8 662",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-xe-3-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.bil.es.geant.net xe-3/0/9 663",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.bil.es.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.bil.es.geant.net-xe-3-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net ae0 580 25813",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net ae0.0 588 25811",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net ae1 562 53369 53367",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net ae1.0 567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net ae2 573 53321",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net ae2.0 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net dsc.0 552",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net et-0/0/2 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-et-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net et-0/0/3 561",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-et-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net lt-0/0/0 548",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net lt-0/0/0.16 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net lt-0/0/0.61 558",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/0/0:0 518",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-0-0:0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/0/0:1 519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-0-0:1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/0/0:2 520",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-0-0:2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/0/0:3 521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-0-0:3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/0/1:0 522",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-0-1:0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/0/1:1 523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-0-1:1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/0/1:2 524",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-0-1:2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/0/1:3 525",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-0-1:3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/1/0 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/1/1 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/1/1.100 585 12971",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-1-1.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/1/1.333 586 31695",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-1-1.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/1/2 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/1/3 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/1/4 538",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/1/5 539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/1/6 540",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.kau.lt.geant.net xe-0/1/7 541",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.kau.lt.geant.net-xe-0-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net ae1 595",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net ae1.103 596",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-ae1.103",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net ae1.998 597",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-ae1.998",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net ae2 609",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net ae2.0 610 709122",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net ae3 587",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-ae3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net ae3.0 588 708705",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-ae3.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net dsc.0 519",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net et-0/0/2 577",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-et-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net et-0/0/5 578",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-et-0-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net et-0/1/2 580",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-et-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net et-0/1/5 579",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-et-0-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net et-1/0/2 581",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-et-1-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net et-1/0/5 582",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-et-1-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net et-1/1/2 584",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-et-1-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net et-1/1/5 583",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-et-1-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net lt-0/0/0 547",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net lt-0/0/0.16 557",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net lt-0/0/0.61 558",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net xe-3/0/0 531",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-xe-3-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net xe-3/0/1 540",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-xe-3-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net xe-3/0/2 532",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-xe-3-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net xe-3/0/3 533",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-xe-3-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net xe-3/0/4 534",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-xe-3-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net xe-3/0/5 535",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-xe-3-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net xe-3/0/6 536",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-xe-3-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net xe-3/0/7 537",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-xe-3-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net xe-3/0/8 538",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-xe-3-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.por.pt.geant.net xe-3/0/9 539",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.por.pt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.por.pt.geant.net-xe-3-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net ae1 561 51754 51750",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net ae1.0 565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net ae2 573 53321",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net ae2.0 574",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net dsc.0 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net et-0/0/2 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-et-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net et-0/0/2.2009 583",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-et-0-0-2.2009",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net et-0/0/2.2112 587",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-et-0-0-2.2112",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net et-0/0/2.3003 584",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-et-0-0-2.3003",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net et-0/0/2.33 581 31723",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-et-0-0-2.33",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net et-0/0/2.83 582",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-et-0-0-2.83",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net et-0/0/2.84 586",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-et-0-0-2.84",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net et-0/0/3 566",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-et-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net lt-0/0/0 548",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net lt-0/0/0.16 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net lt-0/0/0.61 559",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/0/0:0 518",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-0-0:0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/0/0:1 533",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-0-0:1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/0/0:2 519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-0-0:2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/0/0:3 520",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-0-0:3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/1/0 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/1/1 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/1/2 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/1/3 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/1/4 538",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/1/5 539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/1/6 540",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.rig.lv.geant.net xe-0/1/7 541",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.rig.lv.geant.net-xe-0-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net ae0 531 21613",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-ae0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net ae0.0 566 12877",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-ae0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net ae1 562 53389",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net ae1.0 563 53387",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net ae10 532 49996",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net ae10.100 571 7950",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-ae10.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net ae10.111 572 50098",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-ae10.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net ae10.200 573",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-ae10.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net dsc.0 552",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net et-0/0/1 568",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-et-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net et-0/0/2 569",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-et-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net lt-0/0/0 548",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net lt-0/0/0.16 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net lt-0/0/0.61 555",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/0/0:0 575",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-0-0:0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/0/0:1 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-0-0:1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/0/0:2 577",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-0-0:2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/0/0:3 578",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-0-0:3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/1/0 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/1/1 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/1/2 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/1/3 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/1/4 538",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/1/5 539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/1/6 540",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt1.tal.ee.geant.net xe-0/1/7 541",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt1.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt1.tal.ee.geant.net-xe-0-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae1 568 52925",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae1.0 572 52927",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10 535 51640",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.10 577 53143",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.11 593 53149",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.12 595 53151",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.13 597 53153",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.14 579 53131",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.15 599 53155",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.17 609 53295",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.18 601 53159",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.19 607 53201",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.2 585 53141",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.20 611 53287",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.20",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.21 613 53313",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.21",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.22 615 53449",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.22",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.23 617 53525",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.23",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.24 619 53661",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.24",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.3 605 52605",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.4 603 53169",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.5 587 53137",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.6 581 53133",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.7 589 53145",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.8 583 53135",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae10.9 591 53147",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae10.9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae2 569 46819",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net ae2.0 571 46815",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net dsc.0 542",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net et-0/0/0 563",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-et-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net et-0/0/2 564",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-et-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net lt-0/0/0 549",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net lt-0/0/0.16 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net lt-0/0/0.61 555",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net xe-0/1/0 560",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net xe-0/1/1 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net xe-0/1/2 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-xe-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.ams.nl.geant.net xe-0/1/3 538",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.ams.nl.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.ams.nl.geant.net-xe-0-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net ae1 562 53369 53367",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net ae1.0 567",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net ae5 576 31149",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net ae5.0 584 31151",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-ae5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net dsc.0 552",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net et-0/0/3 561",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-et-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net lt-0/0/0 548",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net lt-0/0/0.16 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net lt-0/0/0.61 559",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/0/0:0 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-0-0:0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/0/0:1 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-0-0:1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/0/0:2 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-0-0:2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/0/0:3 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-0-0:3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/1/0 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/1/1 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/1/1.100 581 25451",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-1-1.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/1/1.333 582 31693",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-1-1.333",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/1/2 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/1/3 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/1/4 538",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/1/5 539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/1/6 540",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.kau.lt.geant.net xe-0/1/7 541",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.kau.lt.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.kau.lt.geant.net-xe-0-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net ae1 561 51754 51750",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net ae1.0 564",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net ae2 582 21613",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-ae2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net ae2.0 587 12877",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-ae2.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net dsc.0 552",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net et-0/0/2 576",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-et-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net et-0/0/2.33 579 31725",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-et-0-0-2.33",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net et-0/0/2.83 580 12923",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-et-0-0-2.83",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net et-0/0/3 566",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-et-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net lt-0/0/0 548",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net lt-0/0/0.16 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net lt-0/0/0.61 558",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/0/0:0 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-0-0:0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/0/0:1 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-0-0:1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/0/0:2 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-0-0:2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/0/0:3 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-0-0:3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/1/0 534",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/1/1 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/1/2 536",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/1/3 537",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/1/4 538",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/1/5 539",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/1/6 540",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.rig.lv.geant.net xe-0/1/7 541",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.rig.lv.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.rig.lv.geant.net-xe-0-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net ae1 585 53389",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-ae1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net ae1.0 590 53387",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-ae1.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net ae10 603 40433",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-ae10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net ae10.100 621 12871",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-ae10.100",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net ae10.111 622 50096",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-ae10.111",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net ae10.200 623 31669 27561",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-ae10.200",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net ae10.2112 629",
-    "handlers": [],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-ae10.2112",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net ae5 602",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-ae5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net ae5.0 620",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-ae5.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net dsc.0 584",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-dsc.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net et-0/0/1 599",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-et-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net et-0/0/2 600",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-et-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net lt-0/0/0 580",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-lt-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net lt-0/0/0.16 588",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-lt-0-0-0.16",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net lt-0/0/0.61 592",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-lt-0-0-0.61",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/0/0:0 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-0-0:0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/0/0:1 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-0-0:1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/0/0:2 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-0-0:2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/0/0:3 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-0-0:3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/1/0 558",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-1-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/1/1 559",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-1-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/1/2 560",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-1-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/1/3 561",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-1-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/1/4 562",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-1-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/1/5 563",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-1-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/1/6 564",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-1-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD rt2.tal.ee.geant.net xe-0/1/7 565",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "rt2.tal.ee.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-rt2.tal.ee.geant.net-xe-0-1-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net fxp0 1",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-fxp0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/0 513",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/0.10 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-0.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/0.50 554",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-0.50",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/1 514",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/10 525",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/11 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/12 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/13 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/14 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/15 531 41919",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/2 516",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/3 517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/4 518",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/5 519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/6 520",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/7 521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/8 523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net ge-0/0/9 524",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-ge-0-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.am.office.geant.net lo0.0 16",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.am.office.geant.net-lo0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net fxp0 1",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-fxp0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/0 513",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/1 514",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/1.10 535",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-1.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/10 524",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/11 525",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/12 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/13 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/14 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/15 531",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/2 515",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/3 516",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/3.500 544",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-3.500",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/3.501 545",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-3.501",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/4 517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/4.17 549",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-4.17",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/4.18 550",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-4.18",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/4.19 532",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-4.19",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/5 519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/6 520",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/7 521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/8 522",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net ge-0/0/9 523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-ge-0-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx1.ch.office.geant.net lo0.0 16",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx1.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx1.ch.office.geant.net-lo0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net fxp0 1",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-fxp0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/0 513",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/0.10 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-0.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/0.50 554",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-0.50",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/1 514",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/10 526",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/11 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/12 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/13 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/14 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/15 531",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/2 516",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/3 517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/4 518",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/5 519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/6 521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/7 522",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/8 523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net ge-0/0/9 524",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-ge-0-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.am.office.geant.net lo0.0 16",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.am.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.am.office.geant.net-lo0.0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net fxp0 1",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-fxp0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/0 513",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-0",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/1 514",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-1",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/1.10 509",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-1.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/10 525",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/11 527",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/12 528",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/13 529",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-13",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/14 530",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-14",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/15 532",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-15",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/2 515",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-2",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/3 517",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-3",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/3.500 548",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-3.500",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/3.996 553",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-3.996",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/4 518",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-4",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/5 519",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-5",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/6 520",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-6",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/7 521",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-7",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/8 523",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-8",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/8.10 543 49960",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-8.10",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/8.11 545",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-8.11",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/8.12 522 53409",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-8.12",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/8.996 554",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-8.996",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net ge-0/0/9 524",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-ge-0-0-9",
-      "namespace": "default",
-      "created_by": "admin"
-    },
-    "secrets": null
-  },
-  {
-    "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD srx2.ch.office.geant.net lo0.0 16",
-    "handlers": [
-      "plain-event-logger"
-    ],
-    "high_flap_threshold": 0,
-    "interval": 300,
-    "low_flap_threshold": 0,
-    "publish": true,
-    "runtime_assets": null,
-    "subscriptions": [
-      "interfacecounters"
-    ],
-    "proxy_entity_name": "srx2.ch.office.geant.net",
-    "check_hooks": null,
-    "stdin": false,
-    "subdue": null,
-    "ttl": 0,
-    "timeout": 0,
-    "round_robin": true,
-    "output_metric_format": "influxdb_line",
-    "output_metric_handlers": [
-      "influx-db-handler"
-    ],
-    "env_vars": null,
-    "metadata": {
-      "name": "check-srx2.ch.office.geant.net-lo0.0",
+      "name": "check-mx1.ams.nl.geant.net-ae1",
       "namespace": "default",
       "created_by": "admin"
     },
diff --git a/test/data/interfaces.json b/test/data/interfaces.json
index 579a630099bf576e7c6e2dac5b36733e8e58a822..da1e1231cf5cf96bc4c465a8a432fd9ce5bbdabb 100644
--- a/test/data/interfaces.json
+++ b/test/data/interfaces.json
@@ -1 +1,50 @@
-[{"router": "rt1.por.pt.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 547}, {"router": "rt1.por.pt.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-sof-bg-RE_IAS| BGP Peering - RE Side", "circuits": [], "snmp-index": 557}, {"router": "rt1.por.pt.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #<city code>-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 558}, {"router": "rt1.por.pt.geant.net", "name": "et-0/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P1", "circuits": [], "snmp-index": 577}, {"router": "rt1.por.pt.geant.net", "name": "et-0/0/5", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | Infinera GRV1 1/1/3 Facing Lisbon", "circuits": [], "snmp-index": 578}, {"router": "rt1.por.pt.geant.net", "name": "et-0/1/2", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | Infinera GRV1 1/1/4 Facing Lisbon", "circuits": [], "snmp-index": 580}, {"router": "rt1.por.pt.geant.net", "name": "et-0/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 579}, {"router": "rt1.por.pt.geant.net", "name": "et-1/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P2", "circuits": [], "snmp-index": 581}, {"router": "rt1.por.pt.geant.net", "name": "et-1/0/5", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | Infinera GRV1 1/1/3 Facing Bilbao", "circuits": [], "snmp-index": 582}, {"router": "rt1.por.pt.geant.net", "name": "et-1/1/2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | Infinera GRV1 1/1/4 Facing Bilbao", "circuits": [], "snmp-index": 584}, {"router": "rt1.por.pt.geant.net", "name": "et-1/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 583}, {"router": "rt1.por.pt.geant.net", "name": "xe-3/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 SRF0000001 | Patched to EX3400 xe-0/2/0", "circuits": [], "snmp-index": 531}, {"router": "rt1.por.pt.geant.net", "name": "xe-3/0/1", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 SRF0000001 | Patched to EX3400 xe-0/2/1", "circuits": [], "snmp-index": 540}, {"router": "rt1.por.pt.geant.net", "name": "xe-3/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P3", "circuits": [], "snmp-index": 532}, {"router": "rt1.por.pt.geant.net", "name": "xe-3/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P4", "circuits": [], "snmp-index": 533}, {"router": "rt1.por.pt.geant.net", "name": "xe-3/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P5", "circuits": [], "snmp-index": 534}, {"router": "rt1.por.pt.geant.net", "name": "xe-3/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P6", "circuits": [], "snmp-index": 535}, {"router": "rt1.por.pt.geant.net", "name": "xe-3/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P7", "circuits": [], "snmp-index": 536}, {"router": "rt1.por.pt.geant.net", "name": "xe-3/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P8", "circuits": [], "snmp-index": 537}, {"router": "rt1.por.pt.geant.net", "name": "xe-3/0/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P9", "circuits": [], "snmp-index": 538}, {"router": "rt1.por.pt.geant.net", "name": "xe-3/0/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P10", "circuits": [], "snmp-index": 539}, {"router": "rt1.por.pt.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-3/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | rt1-sw1 (ex3400)", "circuits": [], "snmp-index": 595}, {"router": "rt1.por.pt.geant.net", "name": "ae1.103", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-3/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #DCN_MANAGEMENT_POR_PT | DCN MANAGEMENT ", "circuits": [], "snmp-index": 596}, {"router": "rt1.por.pt.geant.net", "name": "ae1.998", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-3/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-por-pt| SW1-EX3400 MANAGEMENT", "circuits": [], "snmp-index": 597}, {"router": "rt1.por.pt.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-1/0/5", "et-1/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | bil-por", "circuits": [], "snmp-index": 609}, {"router": "rt1.por.pt.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-1/0/5", "et-1/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL_POR_IPTRUNK | BIL-POR |  ", "circuits": [{"id": 709122, "name": "BIL_POR_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 610}, {"router": "rt1.por.pt.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-0/0/5", "et-0/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | lis-por", "circuits": [], "snmp-index": 587}, {"router": "rt1.por.pt.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-0/0/5", "et-0/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS_POR_IPTRUNK | LIS-POR |  ", "circuits": [{"id": 708705, "name": "LIS_POR_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 588}, {"router": "rt1.por.pt.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 519}, {"router": "rt1.rig.lv.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 548}, {"router": "rt1.rig.lv.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-rig-lv-rt1-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710694, "name": "BGPPEERING-RIG-LV-RT1-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 553}, {"router": "rt1.rig.lv.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #RIG-IAS-RE-Peering_rt1 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 559}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/0/0:0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 |", "circuits": [], "snmp-index": 518}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/0/0:1", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 |", "circuits": [], "snmp-index": 533}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/0/0:2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 |", "circuits": [], "snmp-index": 519}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/0/0:3", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 |", "circuits": [], "snmp-index": 520}, {"router": "rt1.rig.lv.geant.net", "name": "et-0/0/2", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER LAT SRF9912943 | LAT Primary", "circuits": [], "snmp-index": 568}, {"router": "rt1.rig.lv.geant.net", "name": "et-0/0/2.33", "bundle": [], "bundle-parents": [], "description": "SRV_IAS CUSTOMER LAT #LAT_AP1_IAS IASPS | ASN5538 ", "circuits": [{"id": 679344, "name": "LAT_AP1_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 581}, {"router": "rt1.rig.lv.geant.net", "name": "et-0/0/2.83", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER LAT #LAT_AP1_IPv6 | ASN5538 | LAT Primary ", "circuits": [{"id": 679356, "name": "LAT_AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 582}, {"router": "rt1.rig.lv.geant.net", "name": "et-0/0/2.84", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER LAT #LAT_AP1_IPv4 | ASN5538 | LAT Primary IPv4 ", "circuits": [{"id": 709261, "name": "LAT_AP1_IPV4", "type": "GEANT IP", "status": "operational"}], "snmp-index": 586}, {"router": "rt1.rig.lv.geant.net", "name": "et-0/0/2.2009", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER LAT SURFNET #AMS-RIG-LOFAR-LAT-SURFNET-19052 |", "circuits": [], "snmp-index": 583}, {"router": "rt1.rig.lv.geant.net", "name": "et-0/0/2.2112", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER LAT EENet #rig-tal-Genomics-LAT-EENet-21034 |", "circuits": [{"id": 709306, "name": "RIG-TAL-GENOMICS-LAT-EENET-21034", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 587}, {"router": "rt1.rig.lv.geant.net", "name": "et-0/0/2.3003", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER LAT SURFNET #AMS-RIG-EVLBI-JIVE-SURFNET-LAT-15056 |", "circuits": [{"id": 705462, "name": "AMS-RIG-EVLBI-JIVE-SURFNET-LAT-15056", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 584}, {"router": "rt1.rig.lv.geant.net", "name": "et-0/0/3", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | RIG-RIG-LL1", "circuits": [], "snmp-index": 566}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 534}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 535}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 536}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 537}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 538}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 539}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/1/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 540}, {"router": "rt1.rig.lv.geant.net", "name": "xe-0/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 541}, {"router": "rt1.rig.lv.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-0/0/3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | RIG-RIG-LAG", "circuits": [], "snmp-index": 561}, {"router": "rt1.rig.lv.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-0/0/3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RIG-RIG-IPTRUNK | RIG-RIG |  ", "circuits": [{"id": 708715, "name": "RIG-RIG-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 565}, {"router": "rt1.rig.lv.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | kau-rig", "circuits": [], "snmp-index": 573}, {"router": "rt1.rig.lv.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU_RIG_IPTRUNK_rt1rig-end | KAU-RIG | ", "circuits": [{"id": 708169, "name": "KAU_RIG_IPTRUNK_RT1KAU-END", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 574}, {"router": "rt1.rig.lv.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 550}, {"router": "mx1.sof.bg.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 659}, {"router": "mx1.sof.bg.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-sof-bg-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710664, "name": "BGPPEERING-SOF-BG-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 662}, {"router": "mx1.sof.bg.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #SOF-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 663}, {"router": "mx1.sof.bg.geant.net", "name": "xe-0/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 526}, {"router": "mx1.sof.bg.geant.net", "name": "xe-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 527}, {"router": "mx1.sof.bg.geant.net", "name": "xe-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 529}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 598}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 599}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | sof bg POP LAN", "circuits": [], "snmp-index": 600}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/3.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-sof-bg-drac | HADES drac", "circuits": [{"id": 663030, "name": "PSMP-SOF-BG-DRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 623}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/3.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP_SOF_BG | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150810", "circuits": [{"id": 663248, "name": "OWAMP_SOF_BG", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 624}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/3.60", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-sof-bg| KVMoIP -sw1 port6--", "circuits": [{"id": 663158, "name": "KVMOIP-SOF-BG", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 627}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9922177 | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150810", "circuits": [{"id": 708181, "name": "PS-SOF-BG-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 601}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/4.0", "bundle": [], "bundle-parents": [], "description": " SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-sof-bg-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150810", "circuits": [{"id": 708181, "name": "PS-SOF-BG-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 632}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 604}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 605}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 606}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 607}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 608}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 611}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 612}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 613}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 614}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 615}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 616}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 617}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 619}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 620}, {"router": "mx1.sof.bg.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 622}, {"router": "mx1.sof.bg.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 634}, {"router": "mx1.sof.bg.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER BREN AP1 SRF9915038 | BREN-PRIMARY Link", "circuits": [], "snmp-index": 633}, {"router": "mx1.sof.bg.geant.net", "name": "xe-1/0/1.100", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER BREN #BREN-AP1| ASN6802|", "circuits": [{"id": 663034, "name": "BREN-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 543}, {"router": "mx1.sof.bg.geant.net", "name": "xe-1/0/1.333", "bundle": [], "bundle-parents": [], "description": "SRV_IAS CUSTOMER BREN #BREN_AP1_IAS IASPS | ASN6802 ", "circuits": [{"id": 663090, "name": "BREN_AP1_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 549}, {"router": "mx1.sof.bg.geant.net", "name": "xe-1/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 636}, {"router": "mx1.sof.bg.geant.net", "name": "xe-1/2/0", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE SRF0000001 P_ae7 | sof-vie 441055869", "circuits": [], "snmp-index": 645}, {"router": "mx1.sof.bg.geant.net", "name": "xe-1/2/1", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE SRF0000001 P_ae7 | sof-vie 441055868", "circuits": [], "snmp-index": 646}, {"router": "mx1.sof.bg.geant.net", "name": "xe-1/3/0", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE SRF0000001 P_ae7 | sof-vie 441154365", "circuits": [], "snmp-index": 672}, {"router": "mx1.sof.bg.geant.net", "name": "xe-1/3/1", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE SRF0000001 P_ae7 | sof-vie 441055870", "circuits": [], "snmp-index": 673}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 689}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 690}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/0/2", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER MARNET P_AE11 SRF9916035 | Circuit ID Sofia-Skopje E10G_03", "circuits": [], "snmp-index": 691}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/0/3", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 SRF0000001 | BUC-SOF | PRIME TELECOM REF: 1018633", "circuits": [], "snmp-index": 692}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/0/4", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 SRF0000001 | BUC-SOF | PRIME TELECOM REF: 1018633", "circuits": [], "snmp-index": 693}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/0/5", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 SRF0000001 | BUC-SOF | PRIME TELECOM REF: 1018633", "circuits": [], "snmp-index": 694}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/0/6", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 SRF0000001 | BUC-SOF | PRIME TELECOM REF: 1018633", "circuits": [], "snmp-index": 695}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/0/7", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER BREN SRF21043 | BREN AP2", "circuits": [], "snmp-index": 696}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 697}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 698}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 699}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 700}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 701}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 702}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/1/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 703}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 704}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 705}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 706}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 707}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 708}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 709}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 710}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 711}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 712}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 713}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 714}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 715}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 716}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 717}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 718}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 719}, {"router": "mx1.sof.bg.geant.net", "name": "xe-2/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 720}, {"router": "mx1.sof.bg.geant.net", "name": "ae7", "bundle": [], "bundle-parents": ["xe-1/2/0", "xe-1/2/1", "xe-1/3/0", "xe-1/3/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | sof-vie", "circuits": [], "snmp-index": 561}, {"router": "mx1.sof.bg.geant.net", "name": "ae7.0", "bundle": [], "bundle-parents": ["xe-1/2/0", "xe-1/2/1", "xe-1/3/0", "xe-1/3/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #SOF_VIE_IPTRUNK | SOF-VIE |  ", "circuits": [{"id": 708746, "name": "SOF_VIE_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 583}, {"router": "mx1.sof.bg.geant.net", "name": "ae8", "bundle": [], "bundle-parents": ["xe-2/0/3", "xe-2/0/4", "xe-2/0/5", "xe-2/0/6"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | buc-sof", "circuits": [], "snmp-index": 562}, {"router": "mx1.sof.bg.geant.net", "name": "ae8.0", "bundle": [], "bundle-parents": ["xe-2/0/3", "xe-2/0/4", "xe-2/0/5", "xe-2/0/6"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-SOF-IPTRUNK | BUC-SOF |", "circuits": [{"id": 708776, "name": "BUC-SOF-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 639}, {"router": "mx1.sof.bg.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["xe-2/0/2"], "description": "LAG CUSTOMER MARNET SRF9916035| Marnet Primary Link", "circuits": [], "snmp-index": 565}, {"router": "mx1.sof.bg.geant.net", "name": "ae11.100", "bundle": [], "bundle-parents": ["xe-2/0/2"], "description": "SRV_GLOBAL CUSTOMER MARNET #MARNET-AP1 | ASN44224 | Main", "circuits": [{"id": 662913, "name": "MARNET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 644}, {"router": "mx1.sof.bg.geant.net", "name": "ae11.333", "bundle": [], "bundle-parents": ["xe-2/0/2"], "description": "SRV_IAS CUSTOMER MARNET #MARNET-AP1-IAS IASPS | ASN44224 ", "circuits": [{"id": 662956, "name": "MARNET-AP1-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 609}, {"router": "mx1.sof.bg.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-2/0/7"], "description": "LAG CUSTOMER BREN #BREN-AP2 | ASN6802 | ", "circuits": [], "snmp-index": 566}, {"router": "mx1.sof.bg.geant.net", "name": "ae12.1", "bundle": [], "bundle-parents": ["xe-2/0/7"], "description": "SRV_GLOBAL CUSTOMER BREN #BREN-AP2 | ASN6802 | ", "circuits": [], "snmp-index": 753}, {"router": "mx1.sof.bg.geant.net", "name": "ae12.2", "bundle": [], "bundle-parents": ["xe-2/0/7"], "description": "SRV_MDVPN CUSTOMER BREN #BREN-AP1-BGP-LU-CoC | MD VPN CoC - BREN", "circuits": [], "snmp-index": 754}, {"router": "mx1.sof.bg.geant.net", "name": "ae12.334", "bundle": [], "bundle-parents": ["xe-2/0/7"], "description": "SRV_IAS CUSTOMER BREN #BREN-AP2-IAS IASPS | ASN6802 ", "circuits": [], "snmp-index": 755}, {"router": "mx1.sof.bg.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 547}, {"router": "mx1.mad.es.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 693}, {"router": "mx1.mad.es.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-mad-es-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710683, "name": "BGPPEERING-MAD-ES-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 901}, {"router": "mx1.mad.es.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #MAD-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 902}, {"router": "mx1.mad.es.geant.net", "name": "xe-0/0/0", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER REDIRIS P_AE13 SRF9915020 |RedIRIS AP2 LL #5", "circuits": [], "snmp-index": 588}, {"router": "mx1.mad.es.geant.net", "name": "xe-0/0/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | FCCN ID: CIRC-CBF4-GEANT-LISBON-MADRID", "circuits": [], "snmp-index": 589}, {"router": "mx1.mad.es.geant.net", "name": "xe-0/1/0", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER REDIRIS P_AE13 SRF9915020 |RedIRIS AP2 LL #4", "circuits": [], "snmp-index": 590}, {"router": "mx1.mad.es.geant.net", "name": "xe-0/1/1", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER REDIRIS P_AE13 SRF9915020 |RedIRIS AP2 LL #3", "circuits": [], "snmp-index": 591}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF0000001 | MAD01-DTNX4-1 XCM 1", "circuits": [], "snmp-index": 592}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 593}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 594}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 595}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 596}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 597}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access", "circuits": [], "snmp-index": 598}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access", "circuits": [], "snmp-index": 599}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 600}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 601}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF0000001 | MAD01-DTNX4-1 XCM 2", "circuits": [], "snmp-index": 602}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Reserved for GTS Expansion", "circuits": [], "snmp-index": 603}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Reserved for GTS Expansion", "circuits": [], "snmp-index": 604}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP", "circuits": [], "snmp-index": 605}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-mad-es-owamp | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160719", "circuits": [], "snmp-index": 675}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 606}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 607}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 608}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 609}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | mad es POP LAN", "circuits": [], "snmp-index": 610}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/8.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-mad-es-idrac |perfSONAR iDRAC", "circuits": [{"id": 661177, "name": "PS-MAD-ES-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 673}, {"router": "mx1.mad.es.geant.net", "name": "ge-0/3/8.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-mad-es-management |perfSONAR MGMT", "circuits": [{"id": 661310, "name": "PS-MAD-ES-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 674}, {"router": "mx1.mad.es.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 526}, {"router": "mx1.mad.es.geant.net", "name": "xe-1/0/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | FCCN ID: CIRC-CBF2-GEANT-LISBON-MADRID", "circuits": [], "snmp-index": 527}, {"router": "mx1.mad.es.geant.net", "name": "xe-1/1/0", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER REDIRIS P_AE12 SRF9926847 | 1", "circuits": [], "snmp-index": 528}, {"router": "mx1.mad.es.geant.net", "name": "xe-1/1/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | FCCN ID: CIRC-CBF-GEANT-LISBON-MADRID", "circuits": [], "snmp-index": 529}, {"router": "mx1.mad.es.geant.net", "name": "so-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 726}, {"router": "mx1.mad.es.geant.net", "name": "so-1/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 727}, {"router": "mx1.mad.es.geant.net", "name": "so-1/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 728}, {"router": "mx1.mad.es.geant.net", "name": "so-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 729}, {"router": "mx1.mad.es.geant.net", "name": "so-1/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 730}, {"router": "mx1.mad.es.geant.net", "name": "so-1/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 731}, {"router": "mx1.mad.es.geant.net", "name": "so-1/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 732}, {"router": "mx1.mad.es.geant.net", "name": "so-1/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 733}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/0/0", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER REDIRIS P_AE12 SRF9926847 | 2", "circuits": [], "snmp-index": 572}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/0/1", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | mx1-sw1 (ex3400)", "circuits": [], "snmp-index": 573}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/0/2", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | mx1-sw1 (ex3400)", "circuits": [], "snmp-index": 574}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 575}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 576}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/1/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 0", "circuits": [], "snmp-index": 577}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/1/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | MAD GTS Server #1", "circuits": [], "snmp-index": 578}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/1/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 2", "circuits": [], "snmp-index": 579}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL", "circuits": [], "snmp-index": 580}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/2/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-mad-es-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160719", "circuits": [], "snmp-index": 676}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/2/1", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER REDIRIS P_AE12 SRF9926847 | 3", "circuits": [], "snmp-index": 581}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | MAD GTS Server #3", "circuits": [], "snmp-index": 582}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 583}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/3/0", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER REDIRIS P_AE13 SRF9915020 | RedIRIS AP2 LL #1", "circuits": [], "snmp-index": 584}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/3/1", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER REDIRIS P_AE13 SRF9915020 | RedIRIS AP2 LL #2", "circuits": [], "snmp-index": 585}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | Link to gts.mx1 xe-0/0/0:3", "circuits": [], "snmp-index": 586}, {"router": "mx1.mad.es.geant.net", "name": "xe-2/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 587}, {"router": "mx1.mad.es.geant.net", "name": "xe-3/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 767}, {"router": "mx1.mad.es.geant.net", "name": "xe-3/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 768}, {"router": "mx1.mad.es.geant.net", "name": "xe-3/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 769}, {"router": "mx1.mad.es.geant.net", "name": "xe-3/1/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | FCCN ID: CIRC-CBF3-GEANT-LISBON-MADRID", "circuits": [], "snmp-index": 770}, {"router": "mx1.mad.es.geant.net", "name": "et-4/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | Interoute ID: DANT0/100GbWL/351542", "circuits": [], "snmp-index": 977}, {"router": "mx1.mad.es.geant.net", "name": "et-5/0/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 |", "circuits": [], "snmp-index": 978}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/0/0", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER REDIRIS | #gen-mad_LHC_CERN-REDIRIS_07003  hairpin - to DTNX", "circuits": [{"id": 669613, "name": "GEN-MAD_LHC_CERN-REDIRIS_07003", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 777}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/0/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER REDIRIS | #gen-mad_LHC_CERN-REDIRIS_07003 - to DTNX", "circuits": [], "snmp-index": 1148}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/0/1", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER REDIRIS| #gen-mad_LHC_CERN-REDIRIS_07003 - to customer", "circuits": [{"id": 669613, "name": "GEN-MAD_LHC_CERN-REDIRIS_07003", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 778}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/0/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER REDIRIS | #gen-mad_LHC_CERN-REDIRIS_07003 - to customer", "circuits": [], "snmp-index": 1149}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/0/2", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY PUBLIC DE-CIX P_AE14 SRF9943043 | DXDB:PNI:5780", "circuits": [], "snmp-index": 788}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/0/3", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY PUBLIC DE-CIX P_AE14 SRF9947983 | DXDB:PNI:8178", "circuits": [], "snmp-index": 789}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 790}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 791}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 794}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 795}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 806}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 807}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 808}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 809}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 810}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 811}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/1/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 812}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 813}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 824}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 827}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 828}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 829}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 830}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 831}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 832}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 835}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 844}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 845}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 846}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 848}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 849}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 850}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 851}, {"router": "mx1.mad.es.geant.net", "name": "xe-7/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 852}, {"router": "mx1.mad.es.geant.net", "name": "et-8/0/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Infinera GRV1 1/1/3", "circuits": [], "snmp-index": 1140}, {"router": "mx1.mad.es.geant.net", "name": "et-8/0/5", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Infinera GRV1 1/1/4", "circuits": [], "snmp-index": 1141}, {"router": "mx1.mad.es.geant.net", "name": "et-8/1/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Reserved for RedIRIS 100Gb AP Upgrade", "circuits": [], "snmp-index": 1142}, {"router": "mx1.mad.es.geant.net", "name": "et-8/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1143}, {"router": "mx1.mad.es.geant.net", "name": "et-9/0/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Infinera GRV2 1/1/3", "circuits": [], "snmp-index": 1138}, {"router": "mx1.mad.es.geant.net", "name": "et-9/0/5", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Infinera GRV2 1/1/4", "circuits": [], "snmp-index": 1139}, {"router": "mx1.mad.es.geant.net", "name": "et-9/1/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Bellalink 100Gb", "circuits": [], "snmp-index": 1144}, {"router": "mx1.mad.es.geant.net", "name": "et-9/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1145}, {"router": "mx1.mad.es.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-1/0/1", "xe-1/1/1", "xe-3/1/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | lis-mad", "circuits": [], "snmp-index": 614}, {"router": "mx1.mad.es.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-1/0/1", "xe-1/1/1", "xe-3/1/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS_MAD_IPTRUNK | LIS-MAD |  ", "circuits": [{"id": 708251, "name": "LIS_MAD_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 714}, {"router": "mx1.mad.es.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mad-par", "circuits": [], "snmp-index": 615}, {"router": "mx1.mad.es.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAD_PAR_IPTRUNK | MAD-PAR |  ", "circuits": [{"id": 708721, "name": "MAD_PAR_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 744}, {"router": "mx1.mad.es.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-5/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | gen-mad", "circuits": [], "snmp-index": 616}, {"router": "mx1.mad.es.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-5/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN_MAD_IPTRUNK | GEN-MAD |  ", "circuits": [{"id": 708740, "name": "GEN_MAD_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 745}, {"router": "mx1.mad.es.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["xe-2/0/1", "xe-2/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx1-sw1 (ex3400)", "circuits": [], "snmp-index": 617}, {"router": "mx1.mad.es.geant.net", "name": "ae3.103", "bundle": [], "bundle-parents": ["xe-2/0/1", "xe-2/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #DCN_MANAGEMENT_MAD_ES | DCN MANAGEMENT ", "circuits": [{"id": 702127, "name": "DCN_MANAGEMENT_MAD_ES", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 747}, {"router": "mx1.mad.es.geant.net", "name": "ae3.998", "bundle": [], "bundle-parents": ["xe-2/0/1", "xe-2/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-mad-es| SW1-EX3400 MANAGEMENT", "circuits": [{"id": 702125, "name": "EX3400-MANAGEMENT-MAD-ES", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 748}, {"router": "mx1.mad.es.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-1/1/0", "xe-2/0/0", "xe-2/2/1"], "description": "LAG CUSTOMER REDIRIS SRF9926947 |", "circuits": [], "snmp-index": 644}, {"router": "mx1.mad.es.geant.net", "name": "ae12.111", "bundle": [], "bundle-parents": ["xe-1/1/0", "xe-2/0/0", "xe-2/2/1"], "description": "SRV_L3VPN CUSTOMER REDIRIS #REDIRIS_AP2_LHCONE | ASN766", "circuits": [{"id": 661547, "name": "REDIRIS_AP2_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 793}, {"router": "mx1.mad.es.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-0/1/1", "xe-2/3/0", "xe-2/3/1"], "description": "LAG CUSTOMER REDIRIS SRF9924269 |", "circuits": [], "snmp-index": 651}, {"router": "mx1.mad.es.geant.net", "name": "ae13.293", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-0/1/1", "xe-2/3/0", "xe-2/3/1"], "description": "SRV_GLOBAL CUSTOMER REDIRIS #REDIRIS_AP2 | ASN766 | ", "circuits": [{"id": 661585, "name": "REDIRIS_AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 934}, {"router": "mx1.mad.es.geant.net", "name": "ae13.333", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-0/1/1", "xe-2/3/0", "xe-2/3/1"], "description": "SRV_IAS CUSTOMER REDIRIS #REDIRIS_AP2_IAS IASPS | ASN766 ", "circuits": [{"id": 661441, "name": "REDIRIS_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 643}, {"router": "mx1.mad.es.geant.net", "name": "ae13.408", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-0/1/1", "xe-2/3/0", "xe-2/3/1"], "description": "SRV_GCS CUSTOMER REDIRIS  #RedIRIS_USC_ExpressRoute_Vlan408 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707129, "name": "REDIRIS_USC_EXPRESSROUTE_VLAN408", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 677}, {"router": "mx1.mad.es.geant.net", "name": "ae13.411", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-0/1/1", "xe-2/3/0", "xe-2/3/1"], "description": "SRV_L2CIRCUIT CUSTOMER RedIRIS #RedIRIS_UCLM_ExpressRoute_Vlan411 ", "circuits": [{"id": 706055, "name": "REDIRIS-UCLM-EXPRESSROUTE-VLAN411", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 707}, {"router": "mx1.mad.es.geant.net", "name": "ae13.667", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-0/1/1", "xe-2/3/0", "xe-2/3/1"], "description": "SRV_CLS CUSTOMER REDIRIS #REDIRIS_AP2_CLS|ASN766 | ", "circuits": [{"id": 661909, "name": "REDIRIS_AP2_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 780}, {"router": "mx1.mad.es.geant.net", "name": "ae14", "bundle": [], "bundle-parents": ["xe-7/0/2", "xe-7/0/3"], "description": "LAG PUBLIC DE-CIX SRF9943055 | ", "circuits": [], "snmp-index": 652}, {"router": "mx1.mad.es.geant.net", "name": "ae14.100", "bundle": [], "bundle-parents": ["xe-7/0/2", "xe-7/0/3"], "description": "SRV_IAS PUBLIC DE-CIX #IX_Peerings_in_DECIX |", "circuits": [{"id": 661295, "name": "IX_PEERINGS_IN_DECIX", "type": "IP PEERING - NON R&E (PUBLIC)", "status": "operational"}], "snmp-index": 1106}, {"router": "mx1.mad.es.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 779}, {"router": "mx1.mad.es.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-mad-es-mgmt-vrf-vlan999|", "circuits": [], "snmp-index": 719}, {"router": "mx1.dub.ie.geant.net", "name": "xe-0/0/0", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY PUBLIC INEX P_ae14 SRF9930779 | swi1-cwt1-1 Switch Port:Ethernet29", "circuits": [], "snmp-index": 526}, {"router": "mx1.dub.ie.geant.net", "name": "xe-0/0/1", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY PUBLIC INEX P_ae14 SRF9943027 | swi1-cwt1-1 Switch Port:Ethernet12", "circuits": [], "snmp-index": 527}, {"router": "mx1.dub.ie.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER HEANET SRF9913941 | BOD / Project Circuits", "circuits": [], "snmp-index": 528}, {"router": "mx1.dub.ie.geant.net", "name": "xe-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 529}, {"router": "mx1.dub.ie.geant.net", "name": "xe-1/0/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER HEANET P_AE10 SRF9919048 | HEANET-AP1-LL3", "circuits": [], "snmp-index": 530}, {"router": "mx1.dub.ie.geant.net", "name": "xe-1/0/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER HEANET P_AE10 SRF9915037 | HEANET-AP1-LL2", "circuits": [], "snmp-index": 531}, {"router": "mx1.dub.ie.geant.net", "name": "xe-1/1/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER HEANET P_AE10 SRF9913933 | HEANET-AP1-LL1", "circuits": [], "snmp-index": 532}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | dub ie POP LAN", "circuits": [], "snmp-index": 593}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/0.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #ps-dub-ie-idrac-vlan23   | perfSONAR iDRAC", "circuits": [{"id": 663246, "name": "PS-DUB-IE-IDRAC-VLAN23", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 698}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/0.111", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lhcone-bud-hu-data| Test PerfSonar LHCONE - data", "circuits": [{"id": 663002, "name": "PS-LHCONE-BUD-HU-DATA", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 626}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/0.120", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #rhps02-dub-ie-vlan120 | POP VLAN 120 pS-rhps02", "circuits": [{"id": 662936, "name": "RHPS02-DUB-IE-VLAN120", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 627}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/0.210", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #mdvpn-securityTool-dub-ie-vlan210 | MDVPN security tool CONTACT: IT IMPLEMENTED:20150901", "circuits": [{"id": 663191, "name": "MDVPN-SECURITYTOOL-DUB-IE-VLAN210", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 629}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS | EXFO management", "circuits": [{"id": 708264, "name": "EXFO-MANAGEMENT-DUB-IE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 594}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #exfo-management-dub-ie| EXFO management", "circuits": [{"id": 708264, "name": "EXFO-MANAGEMENT-DUB-IE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 678}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE |reserved for PSMP", "circuits": [], "snmp-index": 596}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 597}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 598}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 599}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 600}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 601}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 602}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 603}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 604}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 605}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 606}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 607}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 608}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 609}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 610}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 611}, {"router": "mx1.dub.ie.geant.net", "name": "ge-1/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 612}, {"router": "mx1.dub.ie.geant.net", "name": "et-2/0/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF9941725 | dub-lon | Century Link (L3) ID: 440233727", "circuits": [], "snmp-index": 676}, {"router": "mx1.dub.ie.geant.net", "name": "lt-2/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 687}, {"router": "mx1.dub.ie.geant.net", "name": "lt-2/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-dub-ie-RE_IAS| BGP PEERING - RE SIDE", "circuits": [{"id": 710680, "name": "BGPPEERING-DUB-IE-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 690}, {"router": "mx1.dub.ie.geant.net", "name": "lt-2/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #DUB-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 691}, {"router": "mx1.dub.ie.geant.net", "name": "et-3/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9941727 | dub-dub | Century Link (L3) ID: 440233728", "circuits": [], "snmp-index": 677}, {"router": "mx1.dub.ie.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-3/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE DUB2 SRF9929995 | dub-dub", "circuits": [], "snmp-index": 537}, {"router": "mx1.dub.ie.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-3/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #DUB-DUB2-IPTRUNK | DUB2-DUB |  ", "circuits": [{"id": 708863, "name": "DUB_DUB2_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 545}, {"router": "mx1.dub.ie.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-2/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE LON SRF9929993 | dub-lon", "circuits": [], "snmp-index": 538}, {"router": "mx1.dub.ie.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-2/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #DUB-LON-IPTRUNK | LON-DUB |  ", "circuits": [{"id": 708711, "name": "DUB_LON_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 648}, {"router": "mx1.dub.ie.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-1/0/1", "xe-1/1/0"], "description": "LAG CUSTOMER HEANET SRF9927909 | HEANET-AP1-LAG", "circuits": [], "snmp-index": 550}, {"router": "mx1.dub.ie.geant.net", "name": "ae10.12", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-1/0/1", "xe-1/1/0"], "description": "SRV_GLOBAL CUSTOMER HEANET #HEANET-AP1 | ASN1213 | ", "circuits": [{"id": 662978, "name": "HEANET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 615}, {"router": "mx1.dub.ie.geant.net", "name": "ae10.30", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-1/0/1", "xe-1/1/0"], "description": "SRV_MDVPN CUSTOMER HEANET AP1 #HEANET-BGP-LU-CoC-2 | MD VPN CoC - HEAnet", "circuits": [{"id": 662965, "name": "HEANET-BGP-LU-COC-2", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 614}, {"router": "mx1.dub.ie.geant.net", "name": "ae10.315", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-1/0/1", "xe-1/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER SURFNET HEANET #AMS-DUB-KNMI-ME-1-SURFNET-HEANET-20045 |", "circuits": [{"id": 705896, "name": "AMS-DUB-KNMI-ME-1-SURFNET-HEANET-20045", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 707}, {"router": "mx1.dub.ie.geant.net", "name": "ae10.333", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-1/0/1", "xe-1/1/0"], "description": "SRV_IAS CUSTOMER HEANET #HEANET-AP1-IAS IASPS | ASN1213 ", "circuits": [{"id": 663018, "name": "HEANET-AP1-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 585}, {"router": "mx1.dub.ie.geant.net", "name": "ae10.1213", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-1/0/1", "xe-1/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER HEANET GEANT #dub_fra-HEANET-RARE_20062 |", "circuits": [{"id": 705917, "name": "DUB_FRA-HEANET-RARE_20062", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 711}, {"router": "mx1.dub.ie.geant.net", "name": "ae10.2281", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-1/0/1", "xe-1/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER HEANET NETHERLIGHT #AMS-DUB-LOFAR-HEANET-NETHERLIGHT-17003 |", "circuits": [{"id": 705915, "name": "AMS-DUB-LOFAR-HEANET-NETHERLIGHT-17003", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 695}, {"router": "mx1.dub.ie.geant.net", "name": "ae14", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/0/1"], "description": "LAG PUBLIC INEX SRF9930763 |", "circuits": [], "snmp-index": 556}, {"router": "mx1.dub.ie.geant.net", "name": "ae14.0", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/0/1"], "description": "SRV_IAS PUBLIC INEX #IX_Peerings_in_INEX |", "circuits": [{"id": 708176, "name": "IX_PEERINGS_IN_INEX", "type": "IP PEERING - NON R&E (PUBLIC)", "status": "operational"}], "snmp-index": 702}, {"router": "mx1.dub.ie.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 544}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/0", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae5 | 730xd-1 Slot4 Port4 VMNIC7", "circuits": [], "snmp-index": 508}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/1", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae9 | 730xd-1 Slot0 Port2 VMNIC1", "circuits": [], "snmp-index": 509}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | 730xd-2 Slot0 Port1 VMNIC0", "circuits": [], "snmp-index": 511}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/3", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae7 | 730xd-3 Slot4 Port4 VMNIC7", "circuits": [], "snmp-index": 512}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/4", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae11 | 730xd-3 Slot0 Port2 VMNIC1", "circuits": [], "snmp-index": 513}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | 730xd-4 Slot0 Port1 VMNIC0", "circuits": [], "snmp-index": 515}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/6", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae12 | 730xd-4 Slot4 Port2 VMNIC5", "circuits": [], "snmp-index": 516}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/7", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae10 | 730xd-2 Slot4 Port2 VMNIC5", "circuits": [], "snmp-index": 517}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/8", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae9 | 730xd-1 Slot4 Port3 VMNIC6", "circuits": [], "snmp-index": 519}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/9", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae1 | 730xd-1 Slot0 Port4 VMNIC3", "circuits": [], "snmp-index": 520}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/10", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae2 | 730xd-2 Slot0 Port3 VMNIC2", "circuits": [], "snmp-index": 521}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/11", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae11 | 730xd-3 Slot4 Port3 VMNIC6", "circuits": [], "snmp-index": 523}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/12", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae3 | 730xd-3 Slot0 Port4 VMNIC3", "circuits": [], "snmp-index": 524}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/13", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae4 | 730xd-4 Slot0 Port3 VMNIC2", "circuits": [], "snmp-index": 525}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/14", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae8 | 730xd-4 Slot4 Port1 VMNIC4", "circuits": [], "snmp-index": 527}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/15", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae6 | 730xd-2 Slot4 Port1 VMNIC4", "circuits": [], "snmp-index": 528}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/16", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae13 | FRA-PAR-BRIDGE 1-1", "circuits": [], "snmp-index": 529}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/18", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-4/2/2", "circuits": [], "snmp-index": 532}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/19", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-4/0/4", "circuits": [], "snmp-index": 533}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/20", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_- | 730xd-5 vmnic4", "circuits": [], "snmp-index": 534}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/21", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae17 | 730xd-5 vmnic5", "circuits": [], "snmp-index": 536}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/22", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae17 | 730xd-5 vmnic9", "circuits": [], "snmp-index": 537}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/23", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae15 | 730xd-5 vmnic6", "circuits": [], "snmp-index": 538}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/24", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae16 | 730xd-5 vmnic8", "circuits": [], "snmp-index": 539}, {"router": "qfx.par.fr.geant.net", "name": "xe-0/0/45", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae14 | QFX.LON2.UK 0/0/45", "circuits": [], "snmp-index": 567}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | 730xd-1 Slot0 Port1 VMNIC0", "circuits": [], "snmp-index": 572}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/1", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae6 | 730xd-2 Slot4 Port4 VMNIC7", "circuits": [], "snmp-index": 576}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/2", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae10 | 730xd-2 Slot0 Port2 VMNIC1", "circuits": [], "snmp-index": 611}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | 730xd-3 Slot0 Port1 VMNIC0", "circuits": [], "snmp-index": 631}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/4", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae8  | 730xd-4 Slot4 Port4 VMNIC7", "circuits": [], "snmp-index": 634}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/5", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae12 | 730xd-4 Slot0 Port2 VMNIC1", "circuits": [], "snmp-index": 635}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/6", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae9 | 730xd-1 Slot4 Port2 VMNIC5", "circuits": [], "snmp-index": 670}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/7", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae11 | 730xd-3 Slot4 Port2 VMNIC5", "circuits": [], "snmp-index": 704}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/8", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae1 | 730xd-1 Slot0 Port3 VMNIC2", "circuits": [], "snmp-index": 642}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/9", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae10 | 730xd-2 Slot4 Port3 VMNIC6", "circuits": [], "snmp-index": 659}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/10", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae2 | 730xd-2 Slot0 Port4 VMNIC3", "circuits": [], "snmp-index": 660}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/11", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae37 | 730xd-3 Slot0 Port3 VMNIC2", "circuits": [], "snmp-index": 662}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/12", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae12| 730xd-4 Slot4 Port3 VMNIC6", "circuits": [], "snmp-index": 663}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/13", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae4 | 730xd-4 Slot0 Port4 VMNIC3", "circuits": [], "snmp-index": 664}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/14", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae5 | 730xd-1 Slot4 Port1 VMNIC4", "circuits": [], "snmp-index": 695}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/15", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae7 | 730xd-3 Slot4 Port1 VMNIC4", "circuits": [], "snmp-index": 708}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/16", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae13 | FRA-PAR-BRIDGE 2-2", "circuits": [], "snmp-index": 643}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/18", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-4/0/5", "circuits": [], "snmp-index": 683}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/19", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-4/1/2", "circuits": [], "snmp-index": 684}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/21", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae17 | 730xd-5 vmnic10", "circuits": [], "snmp-index": 710}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/23", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae15 | 730xd-5 vmnic7", "circuits": [], "snmp-index": 714}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/24", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae16 | 730xd-5 vmnic11", "circuits": [], "snmp-index": 757}, {"router": "qfx.par.fr.geant.net", "name": "xe-1/0/45", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae14 | QFX.LON2.UK 1/0/45", "circuits": [], "snmp-index": 696}, {"router": "qfx.par.fr.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-0/0/18", "xe-0/0/19", "xe-1/0/18", "xe-1/0/19"], "description": "LAG INFRASTRUCTURE LAN | MX AE30", "circuits": [], "snmp-index": 620}, {"router": "qfx.par.fr.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-0/0/9", "xe-1/0/8"], "description": "LAG INFRASTRUCTURE LAN | 730xd-1 ESXI Traffic LAG", "circuits": [], "snmp-index": 621}, {"router": "qfx.par.fr.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-0/0/10", "xe-1/0/10"], "description": "LAG INFRASTRUCTURE LAN | 730xd-2 ESXI Traffic LAG", "circuits": [], "snmp-index": 622}, {"router": "qfx.par.fr.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["xe-0/0/12", "xe-1/0/11"], "description": "LAG INFRASTRUCTURE LAN | 730xd-3 ESXI Traffic LAG", "circuits": [], "snmp-index": 623}, {"router": "qfx.par.fr.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["xe-0/0/13", "xe-1/0/13"], "description": "LAG INFRASTRUCTURE LAN | 730xd-4 ESXI Traffic LAG", "circuits": [], "snmp-index": 624}, {"router": "qfx.par.fr.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/14"], "description": "LAG INFRASTRUCTURE LAN | 730xd-1 vSAN Traffic LAG", "circuits": [], "snmp-index": 625}, {"router": "qfx.par.fr.geant.net", "name": "ae6", "bundle": [], "bundle-parents": ["xe-0/0/15", "xe-1/0/1"], "description": "LAG INFRASTRUCTURE LAN | 730xd-2 vSAN Traffic LAG", "circuits": [], "snmp-index": 626}, {"router": "qfx.par.fr.geant.net", "name": "ae7", "bundle": [], "bundle-parents": ["xe-0/0/3", "xe-1/0/15"], "description": "LAG INFRASTRUCTURE LAN | 730xd-3 vSAN Traffic LAG", "circuits": [], "snmp-index": 627}, {"router": "qfx.par.fr.geant.net", "name": "ae8", "bundle": [], "bundle-parents": ["xe-0/0/14", "xe-1/0/4"], "description": "LAG INFRASTRUCTURE LAN | 730xd-4 vSAN Traffic LAG", "circuits": [], "snmp-index": 628}, {"router": "qfx.par.fr.geant.net", "name": "ae9", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-0/0/8", "xe-1/0/6"], "description": "LAG INFRASTRUCTURE LAN | 730xd-1 VM Traffic LAG", "circuits": [], "snmp-index": 629}, {"router": "qfx.par.fr.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-0/0/7", "xe-1/0/2", "xe-1/0/9"], "description": "LAG INFRASTRUCTURE LAN | 730xd-2 VM Traffic LAG", "circuits": [], "snmp-index": 724}, {"router": "qfx.par.fr.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["xe-0/0/4", "xe-0/0/11", "xe-1/0/7"], "description": "LAG INFRASTRUCTURE LAN | 730xd-3 VM Traffic LAG", "circuits": [], "snmp-index": 726}, {"router": "qfx.par.fr.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-0/0/6", "xe-1/0/5", "xe-1/0/12"], "description": "LAG INFRASTRUCTURE LAN | 730xd-4 VM Traffic LAG", "circuits": [], "snmp-index": 729}, {"router": "qfx.par.fr.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["xe-0/0/16", "xe-1/0/16"], "description": "LAG INFRASTRUCTURE LAN | QFX.FRA.DE AE13", "circuits": [], "snmp-index": 718}, {"router": "qfx.par.fr.geant.net", "name": "ae15", "bundle": [], "bundle-parents": ["xe-0/0/23", "xe-1/0/23"], "description": "LAG INFRASTRUCTURE LAN | 730xd-5 ESXI Traffic LAG", "circuits": [], "snmp-index": 762}, {"router": "qfx.par.fr.geant.net", "name": "ae16", "bundle": [], "bundle-parents": ["xe-0/0/24", "xe-1/0/24"], "description": "LAG INFRASTRUCTURE LAN | 730xd-5 vSAN Traffic LAG", "circuits": [], "snmp-index": 760}, {"router": "qfx.par.fr.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["xe-0/0/21", "xe-0/0/22", "xe-1/0/21"], "description": "LAG INFRASTRUCTURE LAN | 730xd-5 VM Traffic LAG", "circuits": [], "snmp-index": 761}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/0", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae5 | 730xd-1 Slot4 Port4 VMNIC7", "circuits": [], "snmp-index": 508}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/1", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae9 | 730xd-1 Slot0 Port2 VMNIC1", "circuits": [], "snmp-index": 509}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | 730xd-2 Slot0 Port1 VMNIC0", "circuits": [], "snmp-index": 511}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/3", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae7 | 730xd-3 Slot4 Port4 VMNIC7", "circuits": [], "snmp-index": 512}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/4", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae11 | 730xd-3 Slot0 Port2 VMNIC1", "circuits": [], "snmp-index": 514}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | 730xd-4 Slot0 Port1 VMNIC0", "circuits": [], "snmp-index": 515}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/6", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae12 | 730xd-4 Slot4 Port2 VMNIC5", "circuits": [], "snmp-index": 516}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/7", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae10 | 730xd-2 Slot4 Port2 VMNIC5", "circuits": [], "snmp-index": 518}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/8", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae9 | 730xd-1 Slot4 Port3 VMNIC6", "circuits": [], "snmp-index": 519}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/9", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae1 | 730xd-1 Slot0 Port4 VMNIC3", "circuits": [], "snmp-index": 520}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/10", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae2 | 730xd-2 Slot0 Port3 VMNIC2", "circuits": [], "snmp-index": 522}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/11", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae11 | 730xd-3 Slot4 Port3 VMNIC6", "circuits": [], "snmp-index": 523}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/12", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae3 | 730xd-3 Slot0 Port4 VMNIC3", "circuits": [], "snmp-index": 672}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/13", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae4 | 730xd-4 Slot0 Port3 VMNIC2", "circuits": [], "snmp-index": 526}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/14", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae8 | 730xd-4 Slot4 Port1 VMNIC4", "circuits": [], "snmp-index": 527}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/15", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae6 | 730xd-2 Slot4 Port1 VMNIC4", "circuits": [], "snmp-index": 528}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/16", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae13 | FRA-PAR-BRIDGE 1-1", "circuits": [], "snmp-index": 530}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/18", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-2/0/0", "circuits": [], "snmp-index": 532}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/19", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-10/3/0", "circuits": [], "snmp-index": 533}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/20", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_- | 730xd-5 vmnic4", "circuits": [], "snmp-index": 534}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/21", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae17 | 730xd-5 vmnic5", "circuits": [], "snmp-index": 535}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/22", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae17 | 730xd-5 vmnic9", "circuits": [], "snmp-index": 537}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/23", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae15 | 730xd-5 vmnic6", "circuits": [], "snmp-index": 538}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/24", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae16 | 730xd-5 vmnic8", "circuits": [], "snmp-index": 539}, {"router": "qfx.fra.de.geant.net", "name": "xe-0/0/44", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae14 | QFX.LON2.UK 0/0/44", "circuits": [], "snmp-index": 566}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | 730xd-1 Slot0 Port1 VMNIC0", "circuits": [], "snmp-index": 638}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/1", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae6 | 730xd-2 Slot4 Port4 VMNIC7", "circuits": [], "snmp-index": 503}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/2", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae10 | 730xd-2 Slot0 Port2 VMNIC1", "circuits": [], "snmp-index": 524}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | 730xd-3 Slot0 Port1 VMNIC0", "circuits": [], "snmp-index": 571}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/4", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae8 | 730xd-4 Slot4 Port4 VMNIC7", "circuits": [], "snmp-index": 574}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/5", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae12 | 730xd-4 Slot0 Port2 VMNIC1", "circuits": [], "snmp-index": 642}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/6", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae9 | 730xd-1 Slot4 Port2 VMNIC5", "circuits": [], "snmp-index": 656}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/7", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae11 | 730xd-3 Slot4 Port2 VMNIC5", "circuits": [], "snmp-index": 667}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/8", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae1 | 730xd-1 Slot0 Port3 VMNIC2", "circuits": [], "snmp-index": 644}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/9", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae10 | 730xd-2 Slot4 Port3 VMNIC6", "circuits": [], "snmp-index": 652}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/10", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae2 | 730xd-2 Slot0 Port4 VMNIC3", "circuits": [], "snmp-index": 653}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/11", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae3 | 730xd-3 Slot0 Port3 VMNIC2", "circuits": [], "snmp-index": 655}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/12", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae12| 730xd-4 Slot4 Port3 VMNIC6", "circuits": [], "snmp-index": 657}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/13", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae4 | 730xd-4 Slot0 Port4 VMNIC3", "circuits": [], "snmp-index": 658}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/14", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae5 | 730xd-1 Slot4 Port1 VMNIC4", "circuits": [], "snmp-index": 661}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/15", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae7 | 730xd-3 Slot4 Port1 VMNIC4", "circuits": [], "snmp-index": 669}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/16", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae13 | FRA-PAR-BRIDGE 2-2", "circuits": [], "snmp-index": 643}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/18", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-2/0/1", "circuits": [], "snmp-index": 660}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/19", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-10/3/1", "circuits": [], "snmp-index": 662}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/21", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae17 | 730xd-5 vmnic10", "circuits": [], "snmp-index": 692}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/23", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae15 | 730xd-5 vmnic7", "circuits": [], "snmp-index": 685}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/24", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae16 | 730xd-5 vmnic11", "circuits": [], "snmp-index": 715}, {"router": "qfx.fra.de.geant.net", "name": "xe-1/0/44", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae14 | QFX.LON2.UK 1/0/44", "circuits": [], "snmp-index": 659}, {"router": "qfx.fra.de.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-0/0/18", "xe-0/0/19", "xe-1/0/18", "xe-1/0/19"], "description": "LAG INFRASTRUCTURE LAN | MX AE30", "circuits": [], "snmp-index": 623}, {"router": "qfx.fra.de.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-0/0/9", "xe-1/0/8"], "description": "LAG INFRASTRUCTURE LAN | 730xd-1 ESXI Traffic LAG", "circuits": [], "snmp-index": 624}, {"router": "qfx.fra.de.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-0/0/10", "xe-1/0/10"], "description": "LAG INFRASTRUCTURE LAN | 730xd-2 ESXI Traffic LAG", "circuits": [], "snmp-index": 625}, {"router": "qfx.fra.de.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["xe-0/0/12", "xe-1/0/11"], "description": "LAG INFRASTRUCTURE LAN | 730xd-3 ESXI Traffic LAG", "circuits": [], "snmp-index": 626}, {"router": "qfx.fra.de.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["xe-0/0/13", "xe-1/0/13"], "description": "LAG INFRASTRUCTURE LAN | 730xd-4 ESXI Traffic LAG", "circuits": [], "snmp-index": 627}, {"router": "qfx.fra.de.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/14"], "description": "LAG INFRASTRUCTURE LAN | 730xd-1 vSAN Traffic LAG", "circuits": [], "snmp-index": 628}, {"router": "qfx.fra.de.geant.net", "name": "ae6", "bundle": [], "bundle-parents": ["xe-0/0/15", "xe-1/0/1"], "description": "LAG INFRASTRUCTURE LAN | 730xd-2 vSAN Traffic LAG", "circuits": [], "snmp-index": 629}, {"router": "qfx.fra.de.geant.net", "name": "ae7", "bundle": [], "bundle-parents": ["xe-0/0/3", "xe-1/0/15"], "description": "LAG INFRASTRUCTURE LAN | 730xd-3 vSAN Traffic LAG", "circuits": [], "snmp-index": 630}, {"router": "qfx.fra.de.geant.net", "name": "ae8", "bundle": [], "bundle-parents": ["xe-0/0/14", "xe-1/0/4"], "description": "LAG INFRASTRUCTURE LAN | 730xd-4 vSAN Traffic LAG", "circuits": [], "snmp-index": 631}, {"router": "qfx.fra.de.geant.net", "name": "ae9", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-0/0/8", "xe-1/0/6"], "description": "LAG INFRASTRUCTURE LAN | 730xd-1 VM Traffic LAG", "circuits": [], "snmp-index": 632}, {"router": "qfx.fra.de.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-0/0/7", "xe-1/0/2", "xe-1/0/9"], "description": "LAG INFRASTRUCTURE LAN | 730xd-2 VM Traffic LAG", "circuits": [], "snmp-index": 675}, {"router": "qfx.fra.de.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["xe-0/0/4", "xe-0/0/11", "xe-1/0/7"], "description": "LAG INFRASTRUCTURE LAN | 730xd-3 VM Traffic LAG", "circuits": [], "snmp-index": 678}, {"router": "qfx.fra.de.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-0/0/6", "xe-1/0/5", "xe-1/0/12"], "description": "LAG INFRASTRUCTURE LAN | 730xd-4 VM Traffic LAG", "circuits": [], "snmp-index": 679}, {"router": "qfx.fra.de.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["xe-0/0/16", "xe-1/0/16"], "description": "LAG INFRASTRUCTURE LAN | QFX.PAR.FR AE13", "circuits": [], "snmp-index": 680}, {"router": "qfx.fra.de.geant.net", "name": "ae14", "bundle": [], "bundle-parents": ["xe-0/0/44", "xe-1/0/44"], "description": "LAG INFRASTRUCTURE LAN | QFX.LON2.UK AE30", "circuits": [], "snmp-index": 687}, {"router": "qfx.fra.de.geant.net", "name": "ae15", "bundle": [], "bundle-parents": ["xe-0/0/23", "xe-1/0/23"], "description": "LAG INFRASTRUCTURE LAN | 730xd-5 ESXI Traffic LAG", "circuits": [], "snmp-index": 578}, {"router": "qfx.fra.de.geant.net", "name": "ae16", "bundle": [], "bundle-parents": ["xe-0/0/24", "xe-1/0/24"], "description": "LAG INFRASTRUCTURE LAN | 730xd-5 vSAN Traffic LAG", "circuits": [], "snmp-index": 581}, {"router": "qfx.fra.de.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["xe-0/0/21", "xe-0/0/22", "xe-1/0/21"], "description": "LAG INFRASTRUCTURE LAN | 730xd-5 VM Traffic LAG", "circuits": [], "snmp-index": 612}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/0", "bundle": [], "bundle-parents": [], "description": "SRX-2 To Switch Cluster ge-1/0/2", "circuits": [], "snmp-index": 513}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/0.10", "bundle": [], "bundle-parents": [], "description": "Infrastructure Management", "circuits": [], "snmp-index": 553}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/0.50", "bundle": [], "bundle-parents": [], "description": "SRX-2 to FW WAN (VLAN 50)", "circuits": [], "snmp-index": 554}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/1", "bundle": [], "bundle-parents": [], "description": "To SRX1", "circuits": [], "snmp-index": 514}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/2", "bundle": [], "bundle-parents": [], "description": "Surfnet Secondary - Service ID: 3287IR2", "circuits": [], "snmp-index": 516}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 517}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 518}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 519}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 521}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 522}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 523}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 524}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/10", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 526}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/11", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 527}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/12", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 528}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/13", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 529}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/14", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 530}, {"router": "srx2.am.office.geant.net", "name": "ge-0/0/15", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 531}, {"router": "srx2.am.office.geant.net", "name": "fxp0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE MANAGEMENT | AM SRX-2 Router", "circuits": [], "snmp-index": 1}, {"router": "srx2.am.office.geant.net", "name": "lo0.0", "bundle": [], "bundle-parents": [], "description": "Router Loopback", "circuits": [], "snmp-index": 16}, {"router": "mx1.bud.hu.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 745}, {"router": "mx1.bud.hu.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-bud-hu_RE_IAS | BGP PEERING - RE SIDE", "circuits": [{"id": 710666, "name": "BGPPEERING-BUD-HU_RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 791}, {"router": "mx1.bud.hu.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #BUD-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 800}, {"router": "mx1.bud.hu.geant.net", "name": "xe-0/0/0", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF0000001 | GTT/002012804", "circuits": [], "snmp-index": 588}, {"router": "mx1.bud.hu.geant.net", "name": "xe-0/0/1", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF0000001 | GTT/002012797", "circuits": [], "snmp-index": 589}, {"router": "mx1.bud.hu.geant.net", "name": "xe-0/1/0", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF0000001 | GTT/002012796", "circuits": [], "snmp-index": 590}, {"router": "mx1.bud.hu.geant.net", "name": "xe-0/1/1", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF0000001 | GTT/002012789", "circuits": [], "snmp-index": 591}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 592}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915905 | BUD01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 593}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 594}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 595}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 596}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 597}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 598}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 599}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP", "circuits": [{"id": 708174, "name": "PS-BUD-HU-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 600}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/2/8.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-bud-hu-owamp | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160607", "circuits": [{"id": 708174, "name": "PS-BUD-HU-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 836}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 601}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915907 | BUD01-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 602}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 603}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 604}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 605}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 606}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 607}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN | bud hu POP LAN", "circuits": [{"id": 663084, "name": "RARE_P4_MANAGEMENT_VLAN3005", "type": "L2SERVICES", "status": "operational"}], "snmp-index": 608}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/6.7", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NTP4.GEANT.NET", "circuits": [{"id": 663169, "name": "NTP4.GEANT.NET", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 774}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/6.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-bud-hu-idrac| perfSONAR iDRAC", "circuits": [{"id": 663064, "name": "PS-BUD-HU-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 834}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/6.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-bud-hu-management |perfSONAR MGMT", "circuits": [{"id": 663098, "name": "PS-BUD-HU-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 835}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/6.60", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-bud-hu| KVMoIP", "circuits": [{"id": 663025, "name": "KVMOIP-BUD-HU", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 759}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/6.93", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #gidp-bud-hu-vlan93| GIDP", "circuits": [{"id": 663172, "name": "GIDP-BUD-HU-VLAN93", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 762}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/6.170", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ipcamera-bud-hu| IP cameras", "circuits": [{"id": 663066, "name": "IPCAMERA-BUD-HU", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 764}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/6.200", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #infoblox-dns-bud-hu-vlan200| INFOBLOX DNS APPLIANCES", "circuits": [{"id": 663097, "name": "INFOBLOX-DNS-BUD-HU-VLAN200", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 767}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/6.3005", "bundle": [], "bundle-parents": [], "description": "SRV_VPLS INFRASTRUCTURE #RARE_P4_MANAGEMENT_VLAN3005 | RARE P4 b1.bud MGMT CONTACT: mian.usman@geant.org IMPLEMENTED: 20200116", "circuits": [{"id": 663084, "name": "RARE_P4_MANAGEMENT_VLAN3005", "type": "L2SERVICES", "status": "operational"}], "snmp-index": 772}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 609}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 610}, {"router": "mx1.bud.hu.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 611}, {"router": "mx1.bud.hu.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 657}, {"router": "mx1.bud.hu.geant.net", "name": "xe-1/0/1", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY UPSTREAM TELIA SRF9940473 | Telia ID: IC-326863", "circuits": [], "snmp-index": 673}, {"router": "mx1.bud.hu.geant.net", "name": "xe-1/0/2", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER CESNET P_AE13 SRF9939551|", "circuits": [], "snmp-index": 674}, {"router": "mx1.bud.hu.geant.net", "name": "xe-1/0/3", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY PUBLIC BIX P_AE18 SRF9949020 | GEANT 10G #2 | VH-NX7710-1 Eth1/32", "circuits": [], "snmp-index": 675}, {"router": "mx1.bud.hu.geant.net", "name": "et-1/1/0", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF9941317|", "circuits": [], "snmp-index": 676}, {"router": "mx1.bud.hu.geant.net", "name": "xe-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 677}, {"router": "mx1.bud.hu.geant.net", "name": "xe-1/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 678}, {"router": "mx1.bud.hu.geant.net", "name": "xe-1/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 679}, {"router": "mx1.bud.hu.geant.net", "name": "xe-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 680}, {"router": "mx1.bud.hu.geant.net", "name": "et-1/3/0", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF9950763 |", "circuits": [], "snmp-index": 681}, {"router": "mx1.bud.hu.geant.net", "name": "xe-2/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9951069 | bud-zag ip3", "circuits": [], "snmp-index": 632}, {"router": "mx1.bud.hu.geant.net", "name": "xe-2/0/1", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9951071 | bud-zag ip4", "circuits": [], "snmp-index": 633}, {"router": "mx1.bud.hu.geant.net", "name": "xe-2/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 634}, {"router": "mx1.bud.hu.geant.net", "name": "xe-2/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 635}, {"router": "mx1.bud.hu.geant.net", "name": "et-2/1/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | bud-lju", "circuits": [], "snmp-index": 647}, {"router": "mx1.bud.hu.geant.net", "name": "xe-2/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 636}, {"router": "mx1.bud.hu.geant.net", "name": "xe-2/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 637}, {"router": "mx1.bud.hu.geant.net", "name": "xe-2/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 644}, {"router": "mx1.bud.hu.geant.net", "name": "xe-2/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 645}, {"router": "mx1.bud.hu.geant.net", "name": "et-2/3/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | bud-lju", "circuits": [], "snmp-index": 649}, {"router": "mx1.bud.hu.geant.net", "name": "xe-3/0/0", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-0", "circuits": [], "snmp-index": 682}, {"router": "mx1.bud.hu.geant.net", "name": "xe-3/0/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #bud-poz_RARE_P4_9951383 | RARE P4 TESTBED", "circuits": [{"id": 708292, "name": "BUD-POZ_RARE_P4_9951383", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 786}, {"router": "mx1.bud.hu.geant.net", "name": "xe-3/0/1", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-1", "circuits": [], "snmp-index": 684}, {"router": "mx1.bud.hu.geant.net", "name": "xe-3/0/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #bud-fra_RARE_P4_9951387 | RARE P4 TESTBED", "circuits": [{"id": 708177, "name": "BUD-FRA_RARE_P4_9951387", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 787}, {"router": "mx1.bud.hu.geant.net", "name": "xe-3/0/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-2", "circuits": [], "snmp-index": 687}, {"router": "mx1.bud.hu.geant.net", "name": "xe-3/0/2.1955", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER KIFU GEANT #bud_bud-KIFU-RARE_200100 |;", "circuits": [{"id": 705914, "name": "BUD_BUD-KIFU-RARE_200100", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 816}, {"router": "mx1.bud.hu.geant.net", "name": "xe-3/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 688}, {"router": "mx1.bud.hu.geant.net", "name": "et-3/1/0", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER ULAKBIM P_AE11 SRF21-024 | ID: WL078543", "circuits": [], "snmp-index": 689}, {"router": "mx1.bud.hu.geant.net", "name": "xe-3/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 693}, {"router": "mx1.bud.hu.geant.net", "name": "xe-3/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 690}, {"router": "mx1.bud.hu.geant.net", "name": "xe-3/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 691}, {"router": "mx1.bud.hu.geant.net", "name": "xe-3/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 692}, {"router": "mx1.bud.hu.geant.net", "name": "et-3/3/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER KIFU P_AE10 SRF19047 |", "circuits": [], "snmp-index": 698}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/0/0", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY CUSTOMER MREN P_AE15 SRF21023|", "circuits": [], "snmp-index": 912}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/0/1", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9919805 | bud-zag ip2", "circuits": [], "snmp-index": 913}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/0/2", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY CUSTOMER AMRES SRF9935923 |Telekom Serbia ID: Beograd/RCUB-AMRES-Budapest/ICL/NIIF/GEANT 10G02", "circuits": [], "snmp-index": 914}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/0/3", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY CUSTOMER AMRES SRF9934757 | Beograd/RCUB-AMRES-Budapest/ICL/NIIF/GEANT 10G01", "circuits": [], "snmp-index": 915}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 916}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 917}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 918}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 919}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/1/0", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY PUBLIC BIX P_AE18 SRF9946211 | GEANT 10G #1 - VH-NX7710-1 Eth2/14", "circuits": [], "snmp-index": 920}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/1/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |", "circuits": [], "snmp-index": 921}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/1/2", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |", "circuits": [], "snmp-index": 922}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/1/3", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER CESNET P_AE13 SRF9919647|", "circuits": [], "snmp-index": 923}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 924}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 925}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/1/6", "bundle": ["ae19"], "bundle-parents": [], "description": "PHY UPSTREAM COGENT SRF0000001 | Cogent ID: 1-300398288", "circuits": [], "snmp-index": 926}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 927}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 928}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/2/1", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9919733 | bud-zag ip1", "circuits": [], "snmp-index": 929}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL", "circuits": [{"id": 708293, "name": "PS-BUD-HU-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 930}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/2/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-bud-hu-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160607", "circuits": [{"id": 708293, "name": "PS-BUD-HU-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1012}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 931}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 932}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 933}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 934}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 935}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/3/0", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY UPSTREAM TELIA SRF9944007 | Telia ID: IC-338564", "circuits": [], "snmp-index": 936}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 937}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 938}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 939}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/3/4", "bundle": ["ae19"], "bundle-parents": [], "description": "PHY UPSTREAM COGENT SRF0000001 | Cogent ID: 1-300398286", "circuits": [], "snmp-index": 940}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 941}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 942}, {"router": "mx1.bud.hu.geant.net", "name": "xe-5/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 943}, {"router": "mx1.bud.hu.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-5/1/1", "xe-5/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE BRA SRF0000001 | bra-bud", "circuits": [], "snmp-index": 614}, {"router": "mx1.bud.hu.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["xe-5/1/1", "xe-5/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-BUD-IPTRUNK | BRA-BUD |", "circuits": [{"id": 708741, "name": "BRA-BUD-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 621}, {"router": "mx1.bud.hu.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-2/0/0", "xe-2/0/1", "xe-5/0/1", "xe-5/2/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF9925409| bud-zag", "circuits": [], "snmp-index": 615}, {"router": "mx1.bud.hu.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["xe-2/0/0", "xe-2/0/1", "xe-5/0/1", "xe-5/2/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-ZAG-IPTRUNK | BUD-ZAG |  ", "circuits": [{"id": 708709, "name": "BUD-ZAG-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 708}, {"router": "mx1.bud.hu.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-2/1/0", "et-2/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE LJU SRF0000001 | bud-lju", "circuits": [], "snmp-index": 616}, {"router": "mx1.bud.hu.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-2/1/0", "et-2/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD_LJU_IPTRUNK | BUD-LJU |  ", "circuits": [{"id": 708736, "name": "BUD-LJU-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 709}, {"router": "mx1.bud.hu.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-1/1/0", "et-1/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE VIE SRF0000001 | bud-vie", "circuits": [], "snmp-index": 617}, {"router": "mx1.bud.hu.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-1/1/0", "et-1/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-VIE-IPTRUNK | BUD-VIE |  ", "circuits": [{"id": 708737, "name": "BUD-VIE-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 714}, {"router": "mx1.bud.hu.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/0/1", "xe-0/1/0", "xe-0/1/1"], "description": "LAG INFRASTRUCTURE BACKBONE BUC SRF0000001 | buc-bud", "circuits": [], "snmp-index": 618}, {"router": "mx1.bud.hu.geant.net", "name": "ae4.0", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/0/1", "xe-0/1/0", "xe-0/1/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-BUD-IPTRUNK | BUC-BUD |", "circuits": [{"id": 708744, "name": "BUC-BUD-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 739}, {"router": "mx1.bud.hu.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "LAG CUSTOMER KIFU AP1 SRF19047 |", "circuits": [], "snmp-index": 642}, {"router": "mx1.bud.hu.geant.net", "name": "ae10.100", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "SRV_GLOBAL CUSTOMER KIFU #KIFU-AP1 | ASN1955 | aka HUNGARNET", "circuits": [{"id": 663051, "name": "KIFU-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 730}, {"router": "mx1.bud.hu.geant.net", "name": "ae10.333", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "SRV_IAS CUSTOMER KIFU #KIFU_AP1_IAS IASGWS | ASN1955 | aka HUNGARNET", "circuits": [{"id": 663070, "name": "KIFU_AP1_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 705}, {"router": "mx1.bud.hu.geant.net", "name": "ae10.911", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "SRV_MDVPN CUSTOMER KIFU #HUNGARNET-BGP-LU-BoC | aka HUNGARNET | HUNGARnet-BGP-LU-CoC", "circuits": [{"id": 663038, "name": "HUNGARNET-BGP-LU-COC", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 697}, {"router": "mx1.bud.hu.geant.net", "name": "ae10.1955", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "SRV_L2CIRCUIT CUSTOMER KIFU GEANT #bud_bud-KIFU-RARE_200100 |;", "circuits": [{"id": 705914, "name": "BUD_BUD-KIFU-RARE_200100", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 814}, {"router": "mx1.bud.hu.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["et-3/1/0"], "description": "LAG CUSTOMER ULAKBIM SRF9926155 |", "circuits": [], "snmp-index": 643}, {"router": "mx1.bud.hu.geant.net", "name": "ae11.100", "bundle": [], "bundle-parents": ["et-3/1/0"], "description": "SRV_GLOBAL CUSTOMER ULAKBIM #ULAKBIM-AP1 | ASN8517 |", "circuits": [{"id": 662949, "name": "ULAKBIM-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 734}, {"router": "mx1.bud.hu.geant.net", "name": "ae11.333", "bundle": [], "bundle-parents": ["et-3/1/0"], "description": "SRV_IAS CUSTOMER ULAKBIM #ULAKBIM_AP1_IAS IASPS | ASN8517 ", "circuits": [{"id": 663080, "name": "ULAKBIM_AP1_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 732}, {"router": "mx1.bud.hu.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["xe-1/0/2", "xe-5/1/3"], "description": "LAG CUSTOMER CESNET SRF9927751 |", "circuits": [], "snmp-index": 648}, {"router": "mx1.bud.hu.geant.net", "name": "ae13.333", "bundle": [], "bundle-parents": ["xe-1/0/2", "xe-5/1/3"], "description": "SRV_IAS CUSTOMER CESNET #CESNET_AP2_IAS IASPS | ASN2852 ", "circuits": [{"id": 663088, "name": "CESNET_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 1022}, {"router": "mx1.bud.hu.geant.net", "name": "ae13.600", "bundle": [], "bundle-parents": ["xe-1/0/2", "xe-5/1/3"], "description": "SRV_GLOBAL CUSTOMER CESNET #CESNET-AP2 | ASN2852 |", "circuits": [{"id": 663001, "name": "CESNET-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1021}, {"router": "mx1.bud.hu.geant.net", "name": "ae15", "bundle": [], "bundle-parents": ["xe-5/0/0"], "description": "LAG CUSTOMER MREN SRF21023 | Telecom Serbia ID: Budapest/NIIF/GEANT-Podgorica/MTELCG/CIS-AMUCG 10G/1000M01", "circuits": [], "snmp-index": 652}, {"router": "mx1.bud.hu.geant.net", "name": "ae15.100", "bundle": [], "bundle-parents": ["xe-5/0/0"], "description": "SRV_GLOBAL CUSTOMER MREN #MREN-AP1 | ASN40981 | ", "circuits": [{"id": 662989, "name": "MREN-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 865}, {"router": "mx1.bud.hu.geant.net", "name": "ae15.333", "bundle": [], "bundle-parents": ["xe-5/0/0"], "description": "SRV_IAS CUSTOMER MREN #MREN-AP-IAS IASGWS | ASN40981 | ", "circuits": [{"id": 662908, "name": "MREN-AP-IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 864}, {"router": "mx1.bud.hu.geant.net", "name": "ae16", "bundle": [], "bundle-parents": ["xe-5/0/2", "xe-5/0/3"], "description": "LAG CUSTOMER AMRES SRF9938887 |", "circuits": [], "snmp-index": 653}, {"router": "mx1.bud.hu.geant.net", "name": "ae16.1", "bundle": [], "bundle-parents": ["xe-5/0/2", "xe-5/0/3"], "description": "SRV_GLOBAL CUSTOMER AMRES #AMRES-AP1 | ASN13092 | ", "circuits": [{"id": 663045, "name": "AMRES-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 878}, {"router": "mx1.bud.hu.geant.net", "name": "ae16.10", "bundle": [], "bundle-parents": ["xe-5/0/2", "xe-5/0/3"], "description": "SRV_MDVPN CUSTOMER AMRES #AMRES-BGP-LU-CoC | AMRES-BGP-LU-CoC", "circuits": [{"id": 662924, "name": "AMRES-BGP-LU-COC", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 877}, {"router": "mx1.bud.hu.geant.net", "name": "ae16.333", "bundle": [], "bundle-parents": ["xe-5/0/2", "xe-5/0/3"], "description": "SRV_IAS CUSTOMER AMRES #AMRES-AP-IAS IASGWS | ASN13092 | ", "circuits": [{"id": 663103, "name": "AMRES-AP-IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 876}, {"router": "mx1.bud.hu.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["xe-1/0/1", "xe-5/3/0"], "description": "LAG UPSTREAM TELIA SRF9940473", "circuits": [], "snmp-index": 654}, {"router": "mx1.bud.hu.geant.net", "name": "ae17.0", "bundle": [], "bundle-parents": ["xe-1/0/1", "xe-5/3/0"], "description": "SRV_IAS UPSTREAM TELIA #TELIA_GWS_BUD | ASN1299", "circuits": [{"id": 708272, "name": "TELIA_GWS_BUD", "type": "GWS - UPSTREAM", "status": "operational"}], "snmp-index": 899}, {"router": "mx1.bud.hu.geant.net", "name": "ae18", "bundle": [], "bundle-parents": ["xe-1/0/3", "xe-5/1/0"], "description": "LAG PUBLIC BIX SRF9946209", "circuits": [], "snmp-index": 655}, {"router": "mx1.bud.hu.geant.net", "name": "ae18.10", "bundle": [], "bundle-parents": ["xe-1/0/3", "xe-5/1/0"], "description": "SRV_IAS PUBLIC BIX #IX-Peerings-in-BIX-BUD | ", "circuits": [{"id": 663235, "name": "IX_PEERINGS_IN_BIX_IPV4", "type": "IP PEERING - NON R&E (PUBLIC)", "status": "operational"}], "snmp-index": 527}, {"router": "mx1.bud.hu.geant.net", "name": "ae19", "bundle": [], "bundle-parents": ["xe-5/1/6", "xe-5/3/4"], "description": "LAG UPSTREAM COGENT SRF9946737 | Cogent ID: 1-300398286", "circuits": [], "snmp-index": 656}, {"router": "mx1.bud.hu.geant.net", "name": "ae19.0", "bundle": [], "bundle-parents": ["xe-5/1/6", "xe-5/3/4"], "description": "SRV_IAS UPSTREAM COGENT #COGENT_GWS_BUD | ASN174", "circuits": [{"id": 708282, "name": "COGENT_GWS_BUD", "type": "GWS - UPSTREAM", "status": "operational"}], "snmp-index": 554}, {"router": "mx1.bud.hu.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-bud-hu-mgmt-vrf-vlan999", "circuits": [], "snmp-index": 660}, {"router": "rt1.tal.ee.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 548}, {"router": "rt1.tal.ee.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-tal-ee-rt1-RE_IAS | BGP Peering - RE Side", "circuits": [{"id": 710647, "name": "BGPPEERING-TAL-EE-RT1-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 553}, {"router": "rt1.tal.ee.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #TAL-IAS-RE-Peering_rt1 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 555}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/0/0:0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | RETN ID: WL-903369-1", "circuits": [], "snmp-index": 575}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/0/0:1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF9948746 | RETN ID: WL-903369-2", "circuits": [], "snmp-index": 576}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/0/0:2", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF9948744 | RETN ID: WL-903369-3", "circuits": [], "snmp-index": 577}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/0/0:3", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | RETN ID: WL-903369-4", "circuits": [], "snmp-index": 578}, {"router": "rt1.tal.ee.geant.net", "name": "et-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 568}, {"router": "rt1.tal.ee.geant.net", "name": "et-0/0/2", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 |", "circuits": [], "snmp-index": 569}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 534}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/1/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER EENET SRF9912865 | EENET AP2", "circuits": [{"id": 669579, "name": "EENET-AP2-LL1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 535}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 536}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 537}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 538}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 539}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/1/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 540}, {"router": "rt1.tal.ee.geant.net", "name": "xe-0/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 541}, {"router": "rt1.tal.ee.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | rig-tal", "circuits": [], "snmp-index": 531}, {"router": "rt1.tal.ee.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RIG_TAL_IPTRUNK  | RIG-TAL |  ", "circuits": [{"id": 709270, "name": "RIG_TAL_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 566}, {"router": "rt1.tal.ee.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-0/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | tal-tal", "circuits": [], "snmp-index": 562}, {"router": "rt1.tal.ee.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-0/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RT1-TAL_RT2-TAL_IPTRUNK | TAL-TAL | ", "circuits": [{"id": 708751, "name": "RT1-TAL_RT2-TAL_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 563}, {"router": "rt1.tal.ee.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-0/1/1"], "description": "LAG CUSTOMER EENET SRF9912865 | EENET AP2", "circuits": [], "snmp-index": 532}, {"router": "rt1.tal.ee.geant.net", "name": "ae10.100", "bundle": [], "bundle-parents": ["xe-0/1/1"], "description": "SRV_GLOBAL CUSTOMER EENET #EENET-AP2 | ASN3221 | ", "circuits": [{"id": 661642, "name": "EENET-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 571}, {"router": "rt1.tal.ee.geant.net", "name": "ae10.111", "bundle": [], "bundle-parents": ["xe-0/1/1"], "description": "SRV_L3VPN CUSTOMER EENET #EENET-AP2-LHCONE | ASN3221", "circuits": [{"id": 661487, "name": "EENET-AP2-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 572}, {"router": "rt1.tal.ee.geant.net", "name": "ae10.200", "bundle": [], "bundle-parents": ["xe-0/1/1"], "description": "SRV_IAS CUSTOMER EENET #EENET-AP2-IAS IASPS | ASN3221 ", "circuits": [{"id": 661317, "name": "EENET-AP2-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 573}, {"router": "rt1.tal.ee.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 552}, {"router": "mx2.lis.pt.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 647}, {"router": "mx2.lis.pt.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-lis2-pt-RE_IAS | BGP Peering - RE Side", "circuits": [{"id": 710678, "name": "BGPPEERING-LIS2-PT-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 650}, {"router": "mx2.lis.pt.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #LIS-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 651}, {"router": "mx2.lis.pt.geant.net", "name": "xe-0/0/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER FCCN P_AE10 SRF9928597 | FCCN AP1 link#2, part of ae10", "circuits": [], "snmp-index": 526}, {"router": "mx2.lis.pt.geant.net", "name": "xe-0/0/1", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 |", "circuits": [], "snmp-index": 527}, {"router": "mx2.lis.pt.geant.net", "name": "xe-0/1/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | FCCN ID: CIRC-CBF-GEANT-LISBON-MADRID", "circuits": [], "snmp-index": 528}, {"router": "mx2.lis.pt.geant.net", "name": "xe-0/1/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | FCCN ID: CIRC-CBF3-GEANT-LISBON-MADRID", "circuits": [], "snmp-index": 529}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 546}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 548}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 549}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 550}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 551}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 552}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 553}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 554}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 555}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 556}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 557}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 558}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 559}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 560}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 561}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 562}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | perfSONAR iDRAC", "circuits": [{"id": 708306, "name": "PS-LIS-PT-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 563}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/7.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lis-pt-idrac |perfSONAR iDRAC", "circuits": [{"id": 708306, "name": "PS-LIS-PT-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 713}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | perfSONAR MGMT", "circuits": [{"id": 708255, "name": "PS-LIS-PT-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 564}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/8.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lis-pt-management |perfSONAR MGMT", "circuits": [{"id": 708255, "name": "PS-LIS-PT-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 714}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP", "circuits": [{"id": 708325, "name": "PS-LIS-PT-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 565}, {"router": "mx2.lis.pt.geant.net", "name": "ge-0/3/9.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lis-pt-owamp | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160618", "circuits": [{"id": 708325, "name": "PS-LIS-PT-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 620}, {"router": "mx2.lis.pt.geant.net", "name": "xe-1/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 |", "circuits": [], "snmp-index": 530}, {"router": "mx2.lis.pt.geant.net", "name": "xe-1/0/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER FCCN P_AE10 SRF9928597 | FCCN AP1 link#1, part of ae10", "circuits": [], "snmp-index": 531}, {"router": "mx2.lis.pt.geant.net", "name": "xe-1/1/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | FCCN ID: CIRC-CBF2-GEANT-LISBON-MADRID", "circuits": [], "snmp-index": 532}, {"router": "mx2.lis.pt.geant.net", "name": "xe-1/1/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL", "circuits": [{"id": 708252, "name": "PS-LIS-PT-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 533}, {"router": "mx2.lis.pt.geant.net", "name": "xe-1/1/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lis-pt-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160618", "circuits": [{"id": 708252, "name": "PS-LIS-PT-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 621}, {"router": "mx2.lis.pt.geant.net", "name": "xe-2/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 |", "circuits": [], "snmp-index": 668}, {"router": "mx2.lis.pt.geant.net", "name": "xe-2/0/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER FCCN P_AE10 SRF18096 | FCCN AP1 link#3, part of ae10", "circuits": [], "snmp-index": 669}, {"router": "mx2.lis.pt.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 671}, {"router": "mx2.lis.pt.geant.net", "name": "xe-2/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 670}, {"router": "mx2.lis.pt.geant.net", "name": "xe-3/0/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER FCCN P_AE10 SRF19079 | FCCN AP1 link#4, part of ae10", "circuits": [], "snmp-index": 695}, {"router": "mx2.lis.pt.geant.net", "name": "xe-3/0/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | FCCN ID: CIRC-CBF4-GEANT-LISBON-MADRID", "circuits": [], "snmp-index": 696}, {"router": "mx2.lis.pt.geant.net", "name": "xe-3/0/2", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 |", "circuits": [], "snmp-index": 697}, {"router": "mx2.lis.pt.geant.net", "name": "xe-3/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 698}, {"router": "mx2.lis.pt.geant.net", "name": "et-3/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 699}, {"router": "mx2.lis.pt.geant.net", "name": "xe-3/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 700}, {"router": "mx2.lis.pt.geant.net", "name": "xe-3/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 701}, {"router": "mx2.lis.pt.geant.net", "name": "xe-3/2/2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | mx2-sw1 (ex3400)", "circuits": [], "snmp-index": 702}, {"router": "mx2.lis.pt.geant.net", "name": "xe-3/2/3", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | mx2-sw1 (ex3400)", "circuits": [], "snmp-index": 703}, {"router": "mx2.lis.pt.geant.net", "name": "et-3/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 704}, {"router": "mx2.lis.pt.geant.net", "name": "et-4/0/2", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | Infinera GRV1 1/1/3 Facing Porto", "circuits": [], "snmp-index": 654}, {"router": "mx2.lis.pt.geant.net", "name": "et-4/0/5", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | Infinera GRV1 1/1/4 Facing Porto", "circuits": [], "snmp-index": 683}, {"router": "mx2.lis.pt.geant.net", "name": "et-4/1/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | FCCN AP 100Gb Upgrade", "circuits": [], "snmp-index": 801}, {"router": "mx2.lis.pt.geant.net", "name": "et-4/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 802}, {"router": "mx2.lis.pt.geant.net", "name": "et-5/0/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Infinera GRV1 1/1/3 Facing Madrid", "circuits": [], "snmp-index": 773}, {"router": "mx2.lis.pt.geant.net", "name": "et-5/0/5", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Infinera GRV1 1/1/4 Facing Madrid", "circuits": [], "snmp-index": 774}, {"router": "mx2.lis.pt.geant.net", "name": "et-5/1/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | BEllaLink 100Gb", "circuits": [], "snmp-index": 799}, {"router": "mx2.lis.pt.geant.net", "name": "et-5/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 800}, {"router": "mx2.lis.pt.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-1/1/0", "xe-3/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | lis-mad", "circuits": [], "snmp-index": 536}, {"router": "mx2.lis.pt.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-1/1/0", "xe-3/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS_MAD_IPTRUNK | LIS-MAD |  ", "circuits": [{"id": 708251, "name": "LIS_MAD_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 566}, {"router": "mx2.lis.pt.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-1/0/0", "xe-2/0/0", "xe-3/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | lis-lis", "circuits": [], "snmp-index": 537}, {"router": "mx2.lis.pt.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-1/0/0", "xe-2/0/0", "xe-3/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS_LIS_IPTRUNK | LIS-LIS |  ", "circuits": [{"id": 708718, "name": "LIS_LIS_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 625}, {"router": "mx2.lis.pt.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-3/2/2", "xe-3/2/3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx2-sw1 (ex3400)", "circuits": [], "snmp-index": 538}, {"router": "mx2.lis.pt.geant.net", "name": "ae2.103", "bundle": [], "bundle-parents": ["xe-3/2/2", "xe-3/2/3"], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #DCN_MANAGEMENT_LIS_PT | DCN MANAGEMENT ", "circuits": [{"id": 679548, "name": "DCN_MANAGEMENT_LIS_PT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 735}, {"router": "mx2.lis.pt.geant.net", "name": "ae2.998", "bundle": [], "bundle-parents": ["xe-3/2/2", "xe-3/2/3"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-lis-pt| SW1-EX3400 MANAGEMENT", "circuits": [{"id": 679551, "name": "EX3400-MANAGEMENT-LIS-PT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 736}, {"router": "mx2.lis.pt.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-4/0/2", "et-4/0/5"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | lis-por", "circuits": [], "snmp-index": 539}, {"router": "mx2.lis.pt.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-4/0/2", "et-4/0/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS_POR_IPTRUNK | LIS-POR |  ", "circuits": [{"id": 708705, "name": "LIS_POR_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 756}, {"router": "mx2.lis.pt.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-2/0/1", "xe-3/0/0"], "description": "LAG CUSTOMER FCCN SRF9928599 ", "circuits": [], "snmp-index": 570}, {"router": "mx2.lis.pt.geant.net", "name": "ae10.333", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-2/0/1", "xe-3/0/0"], "description": "SRV_IAS CUSTOMER FCCN #FCCN-AP1-IAS IASGWS | ASN1930 ", "circuits": [{"id": 661641, "name": "FCCN-AP1-IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 614}, {"router": "mx2.lis.pt.geant.net", "name": "ae10.1930", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-2/0/1", "xe-3/0/0"], "description": "SRV_GLOBAL CUSTOMER FCCN #FCCN-AP1 | ASN1930 ", "circuits": [{"id": 661976, "name": "FCCN-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 600}, {"router": "mx2.lis.pt.geant.net", "name": "ae10.1932", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-2/0/1", "xe-3/0/0"], "description": "SRV_MDVPN CUSTOMER FCCN #FCCN_AP_P_BGP_LU_CoC | MD VPN CoC", "circuits": [{"id": 661908, "name": "FCCN_AP_P_BGP_LU_COC", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 599}, {"router": "mx2.lis.pt.geant.net", "name": "ae10.1945", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-2/0/1", "xe-3/0/0"], "description": "SRV_GCS CUSTOMER FCCN  #FCCN_NoveSBE_ExpressRoute_Vlan1945 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707126, "name": "FCCN_NOVESBE_EXPRESSROUTE_VLAN1945", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 738}, {"router": "mx2.lis.pt.geant.net", "name": "ae10.1947", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-2/0/1", "xe-3/0/0"], "description": "SRV_GCS CUSTOMER FCCN  #FCCN_IPP_ExpressRoute_Vlan1947 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707124, "name": "FCCN_IPP_EXPRESSROUTE_VLAN1947", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 749}, {"router": "mx2.lis.pt.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 604}, {"router": "mx1.ams.nl.geant.net", "name": "xe-0/0/0", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY CUSTOMER KIAE P_AE16 SRF9915671 |", "circuits": [], "snmp-index": 588}, {"router": "mx1.ams.nl.geant.net", "name": "xe-0/0/1", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY CUSTOMER SWITCH P_AE14 SRF18008 |", "circuits": [], "snmp-index": 589}, {"router": "mx1.ams.nl.geant.net", "name": "xe-0/1/1", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | ams-bru", "circuits": [], "snmp-index": 591}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP", "circuits": [{"id": 708246, "name": "PS-AMS-NL-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 607}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #PS-AMS-NL-OWAMP | OWAMP CONTACT: IVAN.GARNIZOV@FAU.DE IMPLEMENTED: 20160505", "circuits": [{"id": 708246, "name": "PS-AMS-NL-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 768}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS OPENFLOW SRF9915275 | ams-zag", "circuits": [], "snmp-index": 608}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE GEANT GEANT #AMS-ZAG OPENFLOW |", "circuits": [], "snmp-index": 687}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS OPENFLOW SRF9915279 | ams-vie", "circuits": [], "snmp-index": 609}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE GEANT GEANT #AMS-VIE OPENFLOW |", "circuits": [], "snmp-index": 711}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS OPENFLOW SRF9915281 | ams-lon", "circuits": [], "snmp-index": 610}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE GEANT GEANT #AMS-LON OPENFLOW |", "circuits": [], "snmp-index": 710}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS OPENFLOW SRF9915277 | ams-fra", "circuits": [], "snmp-index": 611}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/4.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE GEANT GEANT #AMS-FRA OPENFLOW |", "circuits": [], "snmp-index": 718}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9919785 | AMS01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 627}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF9928669 | #1", "circuits": [], "snmp-index": 635}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/6.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS INTERNET2 #AMS-AMS-DREAMER-GTS-INTERNET2-15027 |", "circuits": [{"id": 661516, "name": "AMS-AMS_DREAMER_GARR-GTS_15033", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1315}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ESNET SRF9927961 | ams-EEX_ESNET_1G OOB", "circuits": [{"id": 708276, "name": "NL-EEX-ESNET-OOB", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 636}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/7.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE-INTERCONNECT ESNET #NL-EEX-ESNET-OOB | ASN293 | AMS-EEX-ESNET-1G-OOB", "circuits": [{"id": 708276, "name": "NL-EEX-ESNET-OOB", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1199}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 645}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS FLOWMON SRF0000001 | DRAC LOM ", "circuits": [{"id": 708188, "name": "FLOWMON-AMS-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 664}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/2/9.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS FLOWMON #FLOWMON-AMS-IDRAC | DRAC LOM", "circuits": [{"id": 708188, "name": "FLOWMON-AMS-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1218}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9919787 | AMS01-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 668}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 669}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF9928579 | #2", "circuits": [], "snmp-index": 670}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/2.1175", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET GTS #AMS-BRU-IMINDS-IMINDS-GTS-15002 |", "circuits": [], "snmp-index": 1283}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 |", "circuits": [{"id": 662971, "name": "RARE-P4-MANAGEMENT-VLAN26", "type": "L2SERVICES", "status": "operational"}, {"id": 663222, "name": "TAAS_CONTROL_AMSTERDAM", "type": "GTS", "status": "operational"}], "snmp-index": 671}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.7", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NTP6.GEANT.NET |", "circuits": [{"id": 663123, "name": "NTP6.GEANT.NET", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 807}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PS-AMS-NL-IDRAC | PERFSONAR IDRAC", "circuits": [{"id": 663225, "name": "PS-AMS-NL-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 753}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PS-AMS-NL-MANAGEMENT-VLAN22 | PERFSONAR MGMT", "circuits": [{"id": 663036, "name": "PS-AMS-NL-MANAGEMENT_VLAN22", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 754}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PS-AMS-NL-IDRAC2 | PERFSONAR IDRAC", "circuits": [{"id": 663033, "name": "PS-AMS-NL-IDRAC2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 798}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PS-AMS-NL-MANAGEMENT-VLAN24 | PERFSONAR MGMT", "circuits": [{"id": 663137, "name": "PS-AMS-NL-MANAGEMENT_VLAN24", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 661}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.50", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DASHBOARD-SERVER-LON2-VLAN50 | DBOARD", "circuits": [{"id": 663147, "name": "DASHBOARD-SERVER-LON2-VLAN50", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 660}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.72", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LHCOPN-MDMSERVER-VLAN72 | LHCOP-MDM SERVER", "circuits": [{"id": 663203, "name": "LHCOPN-MDMSERVER-VLAN72", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 758}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.75", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AAI-AMS-NL-VLAN75 | AAI", "circuits": [{"id": 663224, "name": "AAI-AMS-NL-VLAN75", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 759}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.79", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #TEMPACCESS-AMS-NL-VLAN79 | TEMP ACCESS ENGINEER LAPTOP", "circuits": [{"id": 663069, "name": "TEMPACCESS-AMS-NL-VLAN79", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 760}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.91", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #MDM-AMS-NL-VLAN91 | MDM", "circuits": [{"id": 663093, "name": "MDM-AMS-NL-VLAN91", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 764}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.101", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-GROOVE-1 | AMS GROOVE 1", "circuits": [{"id": 662932, "name": "AMS-GROOVE-1", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1068}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.102", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-GROOVE-1-MANAGEMENT | AMS GROOVE 1 DIRECT MANAGEMENT", "circuits": [{"id": 662934, "name": "AMS-GROOVE-1-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1080}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.170", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #IPCAMERA-AMS-NL-VLAN170 | IP CAMERAS", "circuits": [{"id": 663085, "name": "IPCAMERA-AMS-NL-VLAN170", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1198}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.201", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-GROOVE-2 | AMS GROOVE 2", "circuits": [{"id": 663063, "name": "AMS-GROOVE-2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1375}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.202", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-GROOVE-2-MANAGEMENT | AMS GROOVE 2 DIRECT MANAGEMENT", "circuits": [{"id": 663194, "name": "AMS-GROOVE-2-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1376}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.203", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-GROOVE-3 | AMS GROOVE 3", "circuits": [{"id": 663089, "name": "AMS-GROOVE-3", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1377}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.204", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-GROOVE-3-MANAGEMENT | AMS GROOVE 3 DIRECT MANAGEMENT", "circuits": [{"id": 663065, "name": "AMS-GROOVE-3-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1378}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.240", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SINET-EDGE-DEVICE-IDRAC-VLAN240 | CONTACT: ANURA.HETTIARACHCHI@GEANT.ORG IMPLEMENTED: 20171212", "circuits": [{"id": 662961, "name": "SINET-EDGE-DEVICE-IDRAC-VLAN240", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1182}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.250", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #VM-AMS-NL-IDRACS-250 | NEW VM IDRACS", "circuits": [{"id": 662988, "name": "VM-AMS-NL-IDRACS-250", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 831}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.550", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OPERATIONS-AMS-NL-VLAN550 | OPERATIONS", "circuits": [{"id": 663233, "name": "OPERATIONS-AMS-NL-VLAN550", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 790}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.888", "bundle": [], "bundle-parents": [], "description": "SRV_TAAS INFRASTRUCTURE GTS #TAAS-CONTROL-AMSTERDAM | TAAS CONTROL", "circuits": [{"id": 663222, "name": "TAAS_CONTROL_AMSTERDAM", "type": "GTS", "status": "operational"}], "snmp-index": 933}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.991", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-GROOVE | AMS GROOVE G30", "circuits": [{"id": 707227, "name": "AMS-GROOVE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 977}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.3005", "bundle": [], "bundle-parents": [], "description": "SRV_VPLS INFRASTRUCTURE #RARE-P4-MANAGEMENT-VLAN26 | RARE P4 B1.AMS MGMT CONTACT: MIAN.USMAN@GEANT.ORG IMPLEMENTED: 20200116", "circuits": [{"id": 662971, "name": "RARE-P4-MANAGEMENT-VLAN26", "type": "L2SERVICES", "status": "operational"}], "snmp-index": 1304}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.3018", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-PAR-SINET-SD-WAN-SINET-SINET-17091 |", "circuits": [{"id": 705907, "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17091", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1122}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.3020", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-PAR-SINET-SD-WAN-SINET-SINET-17090 |", "circuits": [{"id": 705908, "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17090", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1123}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/3.3021", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SINET-INTERNET-ACCESS-VLAN3021 | SINET INTERNET ACCESS CONTACT: ANURA.HETTIARACHCHI@GEANT.ORG IMPLEMENTED: 20180116", "circuits": [{"id": 663141, "name": "SINET-INTERNET-ACCESS-VLAN3021", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1125}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF9928059 |", "circuits": [], "snmp-index": 672}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 673}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BOD TestPort | connected to ge-0/3/7", "circuits": [], "snmp-index": 676}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE SRF00001 #TEST-INTERFACE-FOR-GCSTESTING-AMS |", "circuits": [], "snmp-index": 677}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/7.48", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER CustRom1 CustRom2 | #pre-prod-rr-20210527-9 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 1100}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/7.56", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER CustRom1 CustRom2 | #pre-prod-rr-20210527-7 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 1093}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/7.67", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER Test Connection | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 1059}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/7.68", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER Test Connection | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 1058}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS FLOWMON SRF0000001 | FlowMon2 Management + FanOut CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20170708", "circuits": [], "snmp-index": 678}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS FLOWMON SRF0000001 | FlowMon2 Collector Interface CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20170708", "circuits": [], "snmp-index": 679}, {"router": "mx1.ams.nl.geant.net", "name": "xe-1/0/0", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | ams-bru", "circuits": [], "snmp-index": 568}, {"router": "mx1.ams.nl.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 569}, {"router": "mx1.ams.nl.geant.net", "name": "xe-1/1/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS BOD SRF9923341 | Netherlight automated GOLE", "circuits": [], "snmp-index": 570}, {"router": "mx1.ams.nl.geant.net", "name": "xe-1/1/1", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER HEANET SRF9921665 |", "circuits": [], "snmp-index": 571}, {"router": "mx1.ams.nl.geant.net", "name": "so-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 934}, {"router": "mx1.ams.nl.geant.net", "name": "so-1/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 935}, {"router": "mx1.ams.nl.geant.net", "name": "so-1/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 936}, {"router": "mx1.ams.nl.geant.net", "name": "so-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 937}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/0/0", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT UBUNTUNET SRF9918077 | GEANT+", "circuits": [], "snmp-index": 572}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/0/1", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | ams-bru", "circuits": [], "snmp-index": 573}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL", "circuits": [{"id": 708204, "name": "PS-LHCONE-BWCTL-AMS-NL", "type": "L3-VPN", "status": "operational"}], "snmp-index": 574}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/0/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS PERFSONAR LHCONE #PS-LHCONE-BWCTL-AMS-NL | BWCTL CONTACT: IVAN.GARNIZOV@FAU.DE IMPLEMENTED: 20160505", "circuits": [{"id": 708204, "name": "PS-LHCONE-BWCTL-AMS-NL", "type": "L3-VPN", "status": "operational"}], "snmp-index": 719}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 575}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 576}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/0.922", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 #SDN-BOD-BR53-OF-1 |", "circuits": [], "snmp-index": 1039}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/0.923", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 #SDN-BOD-BR53-OF-5 |", "circuits": [], "snmp-index": 1204}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/0.924", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 #SDN-BOD-BR53-OF-6 |", "circuits": [], "snmp-index": 1205}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/0.925", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 #SDN-BOD-BR53-OF-7 |", "circuits": [], "snmp-index": 1206}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/0.932", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 #SDN-BOD-BR53-OF-2 |", "circuits": [], "snmp-index": 1040}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/0.933", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 #SDN-BOD-BR53-OF-8 |", "circuits": [], "snmp-index": 1207}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/0.934", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 #SDN-BOD-BR53-OF-9 |", "circuits": [], "snmp-index": 1208}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/0.935", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 #SDN-BOD-BR53-OF-10 |", "circuits": [], "snmp-index": 1209}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/0.2905", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT GEANT #NETHERLIGHT-SDN-BOD-PILOT | NETHERLIGHT TO SDN-BOD FOR PILOT", "circuits": [], "snmp-index": 1116}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 577}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 578}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/2.1003", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS JRA1 #JRA1-SDN-BOD-PILOT-BR53-AMS | SDN-BOD PILOT BR53", "circuits": [], "snmp-index": 979}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 579}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 580}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/2/1", "bundle": ["ae21"], "bundle-parents": [], "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #1 SRF20047 |GEANT-EXR01-AMS21-PRI-06162020 ", "circuits": [], "snmp-index": 581}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 582}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 583}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 584}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 585}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9928211 | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", "circuits": [{"id": 708155, "name": "PS-AMS-NL-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 586}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/3/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #PS-AMS-NL-BWCTL | BWCTL CONTACT: IVAN.GARNIZOV@FAU.DE IMPLEMENTED: 20150811", "circuits": [{"id": 708155, "name": "PS-AMS-NL-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 926}, {"router": "mx1.ams.nl.geant.net", "name": "xe-2/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 587}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DMC20 SRF19093 | GEANT to NETHERLIGHT (SURFNET) | NETHERLIGHT PORT: Asd001b-jnx-03: et-5/0/3", "circuits": [], "snmp-index": 1070}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/0/2.1500", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET NETHERLIGHT #AMS-LON-JIVE-NETHERLIGHT-UBUNTUNET-12008 |", "circuits": [{"id": 705454, "name": "AMS-LON-JIVE-NETHERLIGHT-UBUNTUNET-12008", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1540}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/0/2.2009", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SURFNET LAT #AMS-RIG-LOFAR-LAT-SURFNET-19052 |", "circuits": [], "snmp-index": 1535}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/0/2.2281", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER HEANET NETHERLIGHT #AMS-DUB-LOFAR-HEANET-NETHERLIGHT-17003 |", "circuits": [{"id": 705915, "name": "AMS-DUB-LOFAR-HEANET-NETHERLIGHT-17003", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1536}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/0/2.2361", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINGAREN #AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19120-VL2361 |", "circuits": [{"id": 707104, "name": "AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19120-VL2361", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1157}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/0/2.3003", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SURFNET LAT #AMS-RIG-EVLBI-JIVE-SURFNET-LAT-15056 |", "circuits": [{"id": 705462, "name": "AMS-RIG-EVLBI-JIVE-SURFNET-LAT-15056", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1541}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/0/2.3004", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #AMS-LON-EXPRES-NETHERLIGHT-JANET-18009 |", "circuits": [{"id": 705427, "name": "AMS-LON-EXPRES-NETHERLIGHT-JANET-18009", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1542}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/0/5", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF9943333 |", "circuits": [], "snmp-index": 1071}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT NETHERLIGHT SRF9926717 | NETHERLIGHT PORT ID: 6/2", "circuits": [], "snmp-index": 1075}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.100", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #CAM-OFFICE-TO-AMS-OFFICE-L2CIRCUIT |", "circuits": [{"id": 663022, "name": "CAM-OFFICE-TO-AMS-OFFICE-L2CIRCUIT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1077}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.101", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #AMS-OFFICE-TO-LON2-(FOR-EDUVPN)-L2CIRCUIT |", "circuits": [{"id": 705901, "name": "AMS-OFFICE-TO-LON2-(FOR-EDUVPN)-L2CIRCUIT", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 985}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.300", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER ENSTINET AP1 #NL-ENSTINET-AP1 | ASN6879 |", "circuits": [{"id": 663174, "name": "NL-ENSTINET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1300}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.301", "bundle": [], "bundle-parents": [], "description": "SRV_IAS CUSTOMER ENSTINET #NL-ENSTINET-IAS IASPS | ASN6879 |", "circuits": [{"id": 663193, "name": "NL-ENSTINET-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 1301}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.315", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SURFNET HEANET #AMS-DUB-KNMI-ME-1-SURFNET-HEANET-20045 |", "circuits": [{"id": 705896, "name": "AMS-DUB-KNMI-ME-1-SURFNET-HEANET-20045", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1447}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.334", "bundle": [], "bundle-parents": [], "description": "SRV_IAS PRIVATE NORDUNET #NL-NORDUNET-IX-2603 | ASN2603 |", "circuits": [{"id": 663116, "name": "NL-NORDUNET-IX-2603", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 1079}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.510", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE-INTERCONNECT INTERNET2 #NL-INTERNET2-VLAN510 | ASN11537 |", "circuits": [{"id": 711466, "name": "NL-INTERNET2-VLAN510", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1057}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.820", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE-INTERCONNECT NKN #NL-NKN | ASN9885 |", "circuits": [{"id": 663223, "name": "NL-NKN", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1081}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.908", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #AMS-PAR-MISC-GEANT-INTERNET2-9940543 |", "circuits": [{"id": 705419, "name": "AMS-PAR-MISC-GEANT-INTERNET2-9940543", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1082}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.2013", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN CUSTOMER NORDUNET #NL-NORDUNET-LHCONE-IPV4 | ASN2603 |", "circuits": [{"id": 663163, "name": "NL-NORDUNET-LHCONE-IPV4", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1085}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.2023", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET INTERNET2 #AMS-PAR-GEANTOPEN-NORDUNET-INTERNET2-17008 |", "circuits": [{"id": 705899, "name": "AMS-PAR-GEANTOPEN-NORDUNET-INTERNET2-17008", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1086}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.2905", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT GEANT #NETHERLIGHT-SDN-BOD-TRIAL | NETHERLIGHT CONNECTION TO SDN BOD FOR TRIAL", "circuits": [{"id": 663006, "name": "NETHERLIGHT-SDN-BOD-TRIAL", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1117}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.3068", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RARE CANARIE #AMS-AMS-RARE-CANARIE-21013 |", "circuits": [{"id": 707213, "name": "AMS-AMS-RARE-CANARIE-21013", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1022}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.3222", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE-INTERCONNECT INTERNET2 #NL-INTERNET2 | ASN11537 |", "circuits": [{"id": 663149, "name": "NL-INTERNET2", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1089}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.3333", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE-INTERCONNECT OMREN #NL-OMREN | ASN206350 |", "circuits": [{"id": 662985, "name": "NL-OMREN", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1090}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.3610", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE-INTERCONNECT KAUST #NL-KAUST | ASN50999 |", "circuits": [{"id": 663210, "name": "NL-KAUST", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1460}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.3611", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE-INTERCONNECT MAEEN #NL-MAEEN | ASN8895 |", "circuits": [{"id": 677292, "name": "NL-MAEEN", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1488}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.4001", "bundle": [], "bundle-parents": [], "description": "SRV_IAS PRIVATE T-SYSTEMS #NL-T-SYSTEMS-IAS-1 | ASN6878 |", "circuits": [{"id": 708763, "name": "NL-T-SYSTEMS-IAS-1", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 1029}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/2.4005", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN CUSTOMER NORDUNET #NL-NORDUNET-LHCONE-IPV6 | ASN2603 |", "circuits": [{"id": 662963, "name": "NL-NORDUNET-LHCONE-IPV6", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1091}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/5", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ESNET SRF9927969 | AMS-EEX_ESNET_100G", "circuits": [], "snmp-index": 1076}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/5.104", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE-INTERCONNECT ESNET #NL-EEX-ESNET-IPV4 | ASN293 | AMS-EEX-ESNET-100G", "circuits": [{"id": 663148, "name": "NL-EEX-ESNET", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1094}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/5.106", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE-INTERCONNECT ESNET #NL-EEX-ESNET-IPV6 | ASN293 | AMS-EEX-ESNET-100G", "circuits": [], "snmp-index": 1096}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/5.111", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN RE-INTERCONNECT ESNET #NL-EEX-ESNET-LHCONE | ASN293 |", "circuits": [{"id": 662957, "name": "NL-EEX-ESNET-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1097}, {"router": "mx1.ams.nl.geant.net", "name": "et-3/1/5.1220", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER ESNET RENATER #AMS-PAR-INFINICORTEX-ESNET-RENATER-15030 |", "circuits": [{"id": 707022, "name": "AMS-PAR-INFINICORTEX-ESNET-RENATER-15030", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1098}, {"router": "mx1.ams.nl.geant.net", "name": "et-4/0/2", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY PUBLIC AMS-IX P_AE12 SRF9942425 | INTERXION ID: NL102081 AMS-IX ID: mym6-mem-1540-6399", "circuits": [], "snmp-index": 1384}, {"router": "mx1.ams.nl.geant.net", "name": "et-4/0/5", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER BELNET SRF19078 P_AE13 | BELNET 3| Circuitid:441692622", "circuits": [], "snmp-index": 1383}, {"router": "mx1.ams.nl.geant.net", "name": "et-4/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1385}, {"router": "mx1.ams.nl.geant.net", "name": "et-4/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1386}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/0/0", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY CUSTOMER KIAE P_AE16 SRF19-140 |", "circuits": [], "snmp-index": 876}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/0/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | Link to gts.mx2 xe-0/0/0:3", "circuits": [], "snmp-index": 877}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/0/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | EX3400 S030 Trunk 1_2 | Needs patching to ODF NL.AMS.AMS9.S145.T05.H24.X22", "circuits": [], "snmp-index": 878}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/0/3", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | EX3400 S030 Trunk 2_2 | Needs patching to ODF NL.AMS.AMS9.S145.T05.H24.X23", "circuits": [], "snmp-index": 879}, {"router": "mx1.ams.nl.geant.net", "name": "et-5/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 880}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/2/1", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-0", "circuits": [], "snmp-index": 882}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/2/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #AMS-FRA-RARE-P4-9951375 | RARE P4 TESTBED", "circuits": [{"id": 708194, "name": "AMS-FRA-RARE-P4-9951375", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1450}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/2/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-1", "circuits": [], "snmp-index": 883}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/2/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #AMS-POZ-RARE-P4-9951379 | RARE P4 TESTBED", "circuits": [{"id": 708243, "name": "AMS-POZ-RARE-P4-9951379", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1448}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/2/3", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-2", "circuits": [], "snmp-index": 884}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/2/3.101", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS GEANT #AMS-AMS-GTS-RARE-200105-AMS |", "circuits": [{"id": 702087, "name": "AMS-AMS-GTS-RARE-200105-AMS", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1441}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/2/3.701", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE RARE NGN #AMS-AMS-RARE-NETHERLIGHT-9952733 |", "circuits": [{"id": 706049, "name": "AMS-AMS-NETHERLIGHT-RARE-9952733", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1155}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/2/3.702", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #LON-AMS-DTN-GENERATOR | RARE P4 TESTBED", "circuits": [{"id": 707052, "name": "LON-AMS-DTN-GENERATOR", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 987}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/2/3.1916", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RARE INTERNET2 RNP #AMS-PAR-RARE-INTERNET2-RNP-20061 |", "circuits": [{"id": 705913, "name": "AMS-PAR-RARE-INTERNET2-RNP-20061", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1024}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/2/3.2200", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RENATER GEANT #AMS-PAR-RENATER-RARE-20070 |", "circuits": [{"id": 705912, "name": "AMS-PAR-RENATER-RARE-20070", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 988}, {"router": "mx1.ams.nl.geant.net", "name": "xe-5/2/3.3068", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RARE CANARIE #AMS-AMS-RARE-CANARIE-21013 |", "circuits": [{"id": 707213, "name": "AMS-AMS-RARE-CANARIE-21013", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 976}, {"router": "mx1.ams.nl.geant.net", "name": "et-5/3/0", "bundle": ["ae20"], "bundle-parents": [], "description": "PHY RE_INTERCONNECT SINET P_AE20 SRF19001 | NII Circuit ID: NL116823-4", "circuits": [], "snmp-index": 885}, {"router": "mx1.ams.nl.geant.net", "name": "et-7/0/2", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | ams-ams", "circuits": [], "snmp-index": 1382}, {"router": "mx1.ams.nl.geant.net", "name": "et-7/0/5", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1381}, {"router": "mx1.ams.nl.geant.net", "name": "et-7/1/2", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1391}, {"router": "mx1.ams.nl.geant.net", "name": "et-7/1/5", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1388}, {"router": "mx1.ams.nl.geant.net", "name": "et-8/0/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | TENET 100Gb new RE Interconnect", "circuits": [], "snmp-index": 1379}, {"router": "mx1.ams.nl.geant.net", "name": "et-8/0/5", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 SRF0000001 | Coriant G30 link ", "circuits": [], "snmp-index": 1380}, {"router": "mx1.ams.nl.geant.net", "name": "et-8/1/2", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 SRF0000001 | Coriant G30 link ", "circuits": [], "snmp-index": 1392}, {"router": "mx1.ams.nl.geant.net", "name": "et-8/1/5", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 SRF0000001 | Coriant G30 link ", "circuits": [], "snmp-index": 1393}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/0", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY CUSTOMER KIAE P_AE16 SRF20033 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 740}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/1", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY PRIVATE GOOGLE P_AE11 SRF0000001", "circuits": [], "snmp-index": 741}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 0", "circuits": [], "snmp-index": 742}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 1", "circuits": [], "snmp-index": 637}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9927005 | PSMP2 DATA", "circuits": [{"id": 708238, "name": "PS-AMS-NL-BWCTL-2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 681}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/4.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #PS-AMS-NL-BWCTL-2 |", "circuits": [{"id": 708238, "name": "PS-AMS-NL-BWCTL-2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 749}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/5", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Oracle 1_2 MX960 Patched to NL.AMS.AMS9.S145.T05.H24.X09", "circuits": [], "snmp-index": 686}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 2", "circuits": [], "snmp-index": 712}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 3 (BMS)", "circuits": [], "snmp-index": 715}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/7.101", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS GEANT #AMS-AMS-GTS-RARE-200105-AMS |", "circuits": [{"id": 702087, "name": "AMS-AMS-GTS-RARE-200105-AMS", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1444}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/8", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ASGC | SRF9911613 |", "circuits": [], "snmp-index": 716}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/8.105", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE-INTERCONNECT ASGC #NL-ASGC | ASN24167 |", "circuits": [{"id": 663171, "name": "NL_ASGC", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1126}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/8.111", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN RE-INTERCONNECT ASGC #NL-ASGC-LHCONE | ASN24167 |", "circuits": [{"id": 662982, "name": "NL-ASGC-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1127}, {"router": "mx1.ams.nl.geant.net", "name": "xe-9/0/9", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Oracle 2_2 MX960 Patched to NL.AMS.AMS9.S145.T05.H24.X10", "circuits": [], "snmp-index": 739}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access | To GTS EX P12", "circuits": [], "snmp-index": 726}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access | To GTS EX P13", "circuits": [], "snmp-index": 743}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | TAAS CONTROL - GTS.SW2 P??", "circuits": [], "snmp-index": 808}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/2/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_TAAS INFRASTRUCTURE GTS #TAAS-CONTROL-AMSTERDAM-VLAN0 | TAAS CONTROL", "circuits": [], "snmp-index": 1066}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Reserved for GTS switch - VPLS", "circuits": [], "snmp-index": 832}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/2/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access | To GTS EX P15", "circuits": [], "snmp-index": 833}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 840}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 841}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 842}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 843}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 844}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 845}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 846}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 847}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 848}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 849}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 857}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 861}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 873}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 890}, {"router": "mx1.ams.nl.geant.net", "name": "ge-9/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 891}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/0/0", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY CUSTOMER SWITCH P_AE14 SRF19017 |", "circuits": [], "snmp-index": 1231}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/0/1", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY RE_INTERCONNECT UBUNTUNET P_AE17 SRF9930065", "circuits": [], "snmp-index": 1232}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/0/2", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY CUSTOMER SWITCH P_AE14 SRF18008 |", "circuits": [], "snmp-index": 1233}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | Link to gts.mx1 xe-0/0/0:3", "circuits": [], "snmp-index": 1234}, {"router": "mx1.ams.nl.geant.net", "name": "et-11/1/0", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY CUSTOMER SURFNET P_AE15 SRF9914023 | NETHERLIGHT PORT ID: 7/1, ABSID: 28205", "circuits": [], "snmp-index": 1235}, {"router": "mx1.ams.nl.geant.net", "name": "gr-11/1/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE-INTERCONNECT IRANET #NL-IRANET | ASN6736 |", "circuits": [], "snmp-index": 965}, {"router": "mx1.ams.nl.geant.net", "name": "gr-11/1/0.1", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS #TUNNEL-FORTIGATE-AMSTERDAM | TUNNEL TO FORTIGATE AM", "circuits": [], "snmp-index": 1102}, {"router": "mx1.ams.nl.geant.net", "name": "lt-11/1/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 904}, {"router": "mx1.ams.nl.geant.net", "name": "lt-11/1/0.12", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 | MDVPN CoC, GN PE to VPN-Proxy for BGP-LU", "circuits": [], "snmp-index": 908}, {"router": "mx1.ams.nl.geant.net", "name": "lt-11/1/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #GEANT-IBGP-PEERING-AMSTERDAM | GN PE TO VPN-PROXY FOR IBGP ", "circuits": [{"id": 710658, "name": "GEANT-IBGP-PEERING-AMSTERDAM", "type": "MD-VPN (INTERNAL)", "status": "operational"}], "snmp-index": 909}, {"router": "mx1.ams.nl.geant.net", "name": "lt-11/1/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPEERING-AMS-NL-RE-IAS | BGP PEERING - RE SIDE", "circuits": [{"id": 710648, "name": "BGPPEERING-AMS-NL_RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1112}, {"router": "mx1.ams.nl.geant.net", "name": "lt-11/1/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #AMS-IAS-RE-PEERING | BGP PEERING - IAS SIDE", "circuits": [], "snmp-index": 1113}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 4 (BMS)", "circuits": [], "snmp-index": 1236}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/0.10", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS GTS #AMS-PAR-SCION-GTS-20053 |", "circuits": [{"id": 705426, "name": "AMS_PAR-SCION-GTS_20053", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1559}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/0.20", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS GTS #AMS-HAM-SCION-GTS-20054 |", "circuits": [{"id": 705430, "name": "AMS_HAM-SCION-GTS_20054", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1560}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/0.25", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET GTS #AMS-BRU-FED4FIRE-GTS-9928774 |", "circuits": [{"id": 706025, "name": "AMS-BRU_FED4FIRE_GTS_9928774", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 804}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/0.34", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS NETHERLIGHT #AMS-AMS-SCION-GTS-NETHERLIGHT-20018 |", "circuits": [{"id": 705947, "name": "AMS-AMS-SCION-GTS-NETHERLIGHT-20018", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 800}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/0.50", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RENATER GTS #AMS-PAR-GRID5000-RENATER-GTS-20026 |", "circuits": [{"id": 706023, "name": "AMS-PAR_GRID5000_RENATER_GTS_20026", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 803}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SERVER 5 | GTS link to Server 5", "circuits": [], "snmp-index": 1239}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/1.11", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-fb27182b26", "circuits": [{"id": 707031, "name": "AM-FB27182B26", "type": "GTS", "status": "operational"}], "snmp-index": 1494}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/1.17", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-f50907e514", "circuits": [{"id": 706978, "name": "AM-F50907E514", "type": "GTS", "status": "operational"}], "snmp-index": 892}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/1.18", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-5d692d60b3", "circuits": [{"id": 706215, "name": "AM-5D692D60B3", "type": "GTS", "status": "operational"}], "snmp-index": 893}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/1.20", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-7d3a8c5fc6", "circuits": [{"id": 708102, "name": "AM-7D3A8C5FC6", "type": "GTS", "status": "operational"}], "snmp-index": 1023}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SERVER 6 | GTS link to Server 6", "circuits": [], "snmp-index": 1237}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/2.11", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-395e786006", "circuits": [{"id": 707018, "name": "AM-395E786006", "type": "GTS", "status": "operational"}], "snmp-index": 788}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/2.12", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-519a7ca586", "circuits": [{"id": 706602, "name": "AM-519A7CA586", "type": "GTS", "status": "operational"}], "snmp-index": 792}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/2.13", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-9f8fc5c292", "circuits": [{"id": 707008, "name": "AM-9F8FC5C292", "type": "GTS", "status": "operational"}], "snmp-index": 858}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/2.14", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-fb454d7c6f", "circuits": [{"id": 706426, "name": "AM-FB454D7C6F", "type": "GTS", "status": "operational"}], "snmp-index": 894}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/2.15", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-260bcd4484", "circuits": [{"id": 706567, "name": "AM-260BCD4484", "type": "GTS", "status": "operational"}], "snmp-index": 927}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/2.16", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-7599a956d3", "circuits": [{"id": 711463, "name": "AM-7599A956D3", "type": "GTS", "status": "operational"}], "snmp-index": 967}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/2.17", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-ba501b13ed", "circuits": [{"id": 711465, "name": "AM-BA501B13ED", "type": "GTS", "status": "operational"}], "snmp-index": 1031}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/2.18", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-1c6d346fb4", "circuits": [{"id": 711467, "name": "AM-1C6D346FB4", "type": "GTS", "status": "operational"}], "snmp-index": 1047}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/2.19", "bundle": [], "bundle-parents": [], "description": "GTS_link|AM-5c555d9a03", "circuits": [{"id": 711464, "name": "AM-5C555D9A03", "type": "GTS", "status": "operational"}], "snmp-index": 1049}, {"router": "mx1.ams.nl.geant.net", "name": "xe-11/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SERVER 7 | GTS link to Server 7", "circuits": [], "snmp-index": 1238}, {"router": "mx1.ams.nl.geant.net", "name": "et-11/3/0", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | SURFNET ID: ???", "circuits": [], "snmp-index": 1240}, {"router": "mx1.ams.nl.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-7/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE AMS SRF0000001 | ams-ams", "circuits": [], "snmp-index": 1211}, {"router": "mx1.ams.nl.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-7/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK | AMS-AMS IP TRUNK", "circuits": [{"id": 708713, "name": "AMS-AMS2-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1213}, {"router": "mx1.ams.nl.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-3/0/5", "et-11/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE HAM SRF0000001 | ams-ham", "circuits": [], "snmp-index": 631}, {"router": "mx1.ams.nl.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-3/0/5", "et-11/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-HAM-IPTRUNK | AMS-HAM IP TRUNK", "circuits": [{"id": 708727, "name": "AMS-HAM-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1319}, {"router": "mx1.ams.nl.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-1/0/0", "xe-2/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE BRU SRF0000001 | ams-bru", "circuits": [], "snmp-index": 633}, {"router": "mx1.ams.nl.geant.net", "name": "ae5.0", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-1/0/0", "xe-2/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-BRU-IPTRUNK | AMS-BRU IP TRUNK", "circuits": [{"id": 708738, "name": "AMS-BRU-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 709}, {"router": "mx1.ams.nl.geant.net", "name": "ae7", "bundle": [], "bundle-parents": ["et-8/0/5", "et-8/1/2", "et-8/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE FRA SRF0000001 | ams-fra | Coriant G30 300G", "circuits": [], "snmp-index": 705}, {"router": "mx1.ams.nl.geant.net", "name": "ae7.0", "bundle": [], "bundle-parents": ["et-8/0/5", "et-8/1/2", "et-8/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-FRA-IPTRUNK | AMS-FRA IP TRUNK | CORIANT G30 100G", "circuits": [{"id": 708773, "name": "AMS-FRA-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1477}, {"router": "mx1.ams.nl.geant.net", "name": "ae9", "bundle": [], "bundle-parents": ["et-7/0/5", "et-7/1/2", "et-7/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE LON SRF0000001 | ams-lon | Coriant G30 300G", "circuits": [], "snmp-index": 707}, {"router": "mx1.ams.nl.geant.net", "name": "ae9.0", "bundle": [], "bundle-parents": ["et-7/0/5", "et-7/1/2", "et-7/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-LON-IPTRUNK-300G | AMS-LON | CORIANT G30 300G", "circuits": [{"id": 708724, "name": "AMS-LON-IPTRUNK-300G", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1501}, {"router": "mx1.ams.nl.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["xe-9/0/1"], "description": "LAG PRIVATE GOOGLE SRF9934309", "circuits": [], "snmp-index": 714}, {"router": "mx1.ams.nl.geant.net", "name": "ae11.0", "bundle": [], "bundle-parents": ["xe-9/0/1"], "description": "SRV_IAS PRIVATE GOOGLE #NL-GOOGLE-15169 | ASN15169 |", "circuits": [{"id": 708234, "name": "NL-GOOGLE-15169", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 823}, {"router": "mx1.ams.nl.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "LAG PUBLIC AMS-IX SRF9922987 |", "circuits": [], "snmp-index": 717}, {"router": "mx1.ams.nl.geant.net", "name": "ae12.100", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "SRV_IAS PUBLIC AMS-IX #IX-PEERINGS-IN-AMS-IX |", "circuits": [{"id": 663132, "name": "IX-PEERINGS-IN-AMS-IX", "type": "IP PEERING - NON R&E (PUBLIC)", "status": "operational"}], "snmp-index": 1143}, {"router": "mx1.ams.nl.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "LAG CUSTOMER BELNET SRF19078 | BELNET AP3", "circuits": [], "snmp-index": 720}, {"router": "mx1.ams.nl.geant.net", "name": "ae13.2", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_GLOBAL CUSTOMER BELNET #BELNET-AP3 | ASN2611 |", "circuits": [{"id": 663244, "name": "BELNET-AP3", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1015}, {"router": "mx1.ams.nl.geant.net", "name": "ae13.3", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_MDVPN CUSTOMER BELNET #BELNET-AP3-MDVPN | MD VPN COC - NREN", "circuits": [{"id": 663020, "name": "BELNET-AP3-MDVPN", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 1187}, {"router": "mx1.ams.nl.geant.net", "name": "ae13.333", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_IAS CUSTOMER BELNET #BELNET-AP3-IAS IASGWS | ASN2611 |", "circuits": [{"id": 663075, "name": "BELNET-AP3-IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 1063}, {"router": "mx1.ams.nl.geant.net", "name": "ae13.4081", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-ARPGAN-EXPRESSROUTE-VLAN4081 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 820}, {"router": "mx1.ams.nl.geant.net", "name": "ae13.4084", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MICROSOFT-EXPRESSROUTE-VLAN4084 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 1176}, {"router": "mx1.ams.nl.geant.net", "name": "ae13.4086", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-FGOV-EXPRESSROUTE-VLAN4086 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706048, "name": "BELNET-FGOV-EXPRESSROUTE-VLAN4086", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1046}, {"router": "mx1.ams.nl.geant.net", "name": "ae13.4087", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-ICT-EXPRESSROUTE-VLAN4087 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706047, "name": "BELNET-ICT-EXPRESSROUTE-VLAN4087", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1074}, {"router": "mx1.ams.nl.geant.net", "name": "ae13.4088", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-NCCN-EXPRESSROUTE-VLAN4088 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 1312}, {"router": "mx1.ams.nl.geant.net", "name": "ae13.4089", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-PREMIER-EXPRESSROUTE-VLAN4089 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 1453}, {"router": "mx1.ams.nl.geant.net", "name": "ae13.4090", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-ARTEV-EXPRESSROUTE-VLAN4090 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 929}, {"router": "mx1.ams.nl.geant.net", "name": "ae13.4091", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-ZWEV-EXPRESSROUTE-VLAN4091 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 968}, {"router": "mx1.ams.nl.geant.net", "name": "ae14", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-11/0/0", "xe-11/0/2"], "description": "LAG CUSTOMER SWITCH SRF18008 |", "circuits": [], "snmp-index": 721}, {"router": "mx1.ams.nl.geant.net", "name": "ae14.600", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-11/0/0", "xe-11/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER SWITCH AMS-IX #AMS-GEN-NREN-IX-AMSIX-SWITCH-18008 |", "circuits": [{"id": 705456, "name": "AMS-GEN-NREN-IX-AMSIX-SWITCH-18008", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1245}, {"router": "mx1.ams.nl.geant.net", "name": "ae15", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "LAG PRIVATE NETHERLIGHT SRF9928201 | NETHERLIGHT PORT ID: 7/1, ABSID: 28205", "circuits": [], "snmp-index": 722}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.34", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER GTS NETHERLIGHT #AMS-AMS-SCION-GTS-NETHERLIGHT-20018 |", "circuits": [{"id": 705947, "name": "AMS-AMS-SCION-GTS-NETHERLIGHT-20018", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1462}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.40", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT GTS #AMS-HAM-SCION-GTS-NETHERLIGHT-20019 |", "circuits": [{"id": 705902, "name": "AMS-HAM_SCION_GTS-NETHERLIGHT_20019", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1463}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.111", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_L3VPN RE-INTERCONNECT KREONET #NL-KREONET-LHCONE | ASN17579", "circuits": [{"id": 663120, "name": "NL-KREONET-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1161}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.112", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_L3VPN CUSTOMER SURFNET #SURFNET-AP1-LHCONE | ASN1162 |", "circuits": [{"id": 663143, "name": "SURFNET-AP1-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1442}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.306", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #AMS-LON-ELVBI-JANET-NETHERLIGHT-12010 |", "circuits": [{"id": 705920, "name": "AMS-LON-ELVBI-JANET-NETHERLIGHT-12010", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1261}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.333", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_IAS CUSTOMER SURFNET #SURFNET-AP1-IAS IASPS| ASN1103 |", "circuits": [{"id": 663047, "name": "SURFNET-AP1-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 801}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.667", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_CLS CUSTOMER SURFNET #SURFNET-AP1-CLS | ASN1103 |", "circuits": [{"id": 662996, "name": "SURFNET-AP1-CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1138}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.673", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_GLOBAL RE-INTERCONNECT KREONET #NL-KREONET | ASN17579 |", "circuits": [{"id": 663126, "name": "NL-KREONET", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 657}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.701", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_L2CIRCUIT INFRASTRUCTURE RARE NGN #AMS-AMS-NETHERLIGHT-RARE-9952733 |", "circuits": [{"id": 706049, "name": "AMS-AMS-NETHERLIGHT-RARE-9952733", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1137}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.722", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #AMS-LON-EXPRES-NETHERLIGHT-JANET-07010 |", "circuits": [{"id": 705923, "name": "AMS-LON-EXPRES-NETHERLIGHT-JANET-07010", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1256}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.723", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #AMS-LON-EXPRES-NETHERLIGHT-JANET-07011 |", "circuits": [{"id": 705921, "name": "AMS-LON-EXPRES-NETHERLIGHT-JANET-07011", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1255}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.1025", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER BELNET NETHERLIGHT #AMS-BRU-IMINDS-IMINDS-NETHERLIGHT-15012 |", "circuits": [{"id": 707029, "name": "AMS-BRU-IMINDS-IMINDS-NETHERLIGHT-15012", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1290}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.1103", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_GLOBAL CUSTOMER SURFNET #SURFNET-AP1 | ASN1103 |", "circuits": [{"id": 663161, "name": "SURFNET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1247}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.4002", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_IAS PRIVATE T-SYSTEMS #NL-T-SYSTEMS-IAS-2 | ASN6878 |", "circuits": [{"id": 708765, "name": "NL-T-SYSTEMS-IAS-2", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 1026}, {"router": "mx1.ams.nl.geant.net", "name": "ae16", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-5/0/0", "xe-9/0/0"], "description": "LAG CUSTOMER KIAE SRF9938597 |", "circuits": [], "snmp-index": 723}, {"router": "mx1.ams.nl.geant.net", "name": "ae16.100", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-5/0/0", "xe-9/0/0"], "description": "SRV_GLOBAL RE-INTERCONNECT KIAE #NL-KIAE | ASN59624 |", "circuits": [{"id": 662937, "name": "NL-KIAE", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 996}, {"router": "mx1.ams.nl.geant.net", "name": "ae16.111", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-5/0/0", "xe-9/0/0"], "description": "SRV_L3VPN RE-INTERCONNECT KIAE #NL-KIAE-LHCONE | ASN57484 |", "circuits": [{"id": 662987, "name": "NL-KIAE-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 995}, {"router": "mx1.ams.nl.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["xe-11/0/1"], "description": "LAG RE_INTERCONNECT UBUNTUNET SRF9915025", "circuits": [], "snmp-index": 724}, {"router": "mx1.ams.nl.geant.net", "name": "ae17.100", "bundle": [], "bundle-parents": ["xe-11/0/1"], "description": "SRV_GLOBAL RE-INTERCONNECT UBUNTUNET #NL-UBUNTUNET | ASN36944 |", "circuits": [{"id": 663050, "name": "NL-UBUNTUNET", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1038}, {"router": "mx1.ams.nl.geant.net", "name": "ae17.402", "bundle": [], "bundle-parents": ["xe-11/0/1"], "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET CANARIE #AMS-LON-MISC-UBUNTUNET-CANARIE-170352 |", "circuits": [{"id": 709295, "name": "AMS-LON-MISC-UBUNTUNET-CANARIE-170352", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1050}, {"router": "mx1.ams.nl.geant.net", "name": "ae17.802", "bundle": [], "bundle-parents": ["xe-11/0/1"], "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET INTERNET2 #AMS-LON-MISC-UBUNTUNET-INTERNET2-170342 |", "circuits": [{"id": 709296, "name": "AMS-LON-MISC-UBUNTUNET-INTERNET2-170342", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1114}, {"router": "mx1.ams.nl.geant.net", "name": "ae20", "bundle": [], "bundle-parents": ["et-5/3/0"], "description": "LAG RE_INTERCONNECT SINET SRF9946517 |", "circuits": [], "snmp-index": 727}, {"router": "mx1.ams.nl.geant.net", "name": "ae20.100", "bundle": [], "bundle-parents": ["et-5/3/0"], "description": "SRV_GLOBAL RE-INTERCONNECT SINET #NL-SINET | ASN2907 | IETR & IP", "circuits": [{"id": 663139, "name": "NL-SINET", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1407}, {"router": "mx1.ams.nl.geant.net", "name": "ae20.200", "bundle": [], "bundle-parents": ["et-5/3/0"], "description": "SRV_L3VPN RE-INTERCONNECT SINET #NL-SINET-LHCONE | ASN2907 |", "circuits": [{"id": 662980, "name": "NL-SINET-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1406}, {"router": "mx1.ams.nl.geant.net", "name": "ae20.210", "bundle": [], "bundle-parents": ["et-5/3/0"], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON2-MISC-SINET-SINET-19044 |", "circuits": [{"id": 705903, "name": "AMS-LON2-MISC-SINET-SINET-19044", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1517}, {"router": "mx1.ams.nl.geant.net", "name": "ae20.220", "bundle": [], "bundle-parents": ["et-5/3/0"], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON2-MISC-SINET-SINET-19045 |", "circuits": [{"id": 705933, "name": "AMS-LON2-MISC-SINET-SINET-19045", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1516}, {"router": "mx1.ams.nl.geant.net", "name": "ae20.990", "bundle": [], "bundle-parents": ["et-5/3/0"], "description": "SRV_L2CIRCUIT CUSTOMER SINET RENATER #AMS-GEN-ITER-SINET-RENATER-20025 |", "circuits": [{"id": 705455, "name": "AMS-GEN-ITER-SINET-RENATER-20025", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1491}, {"router": "mx1.ams.nl.geant.net", "name": "ae20.2260", "bundle": [], "bundle-parents": ["et-5/3/0"], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINGAREN #AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19103-VL2260 |", "circuits": [{"id": 706922, "name": "AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19103-VL2260", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 989}, {"router": "mx1.ams.nl.geant.net", "name": "ae20.3019", "bundle": [], "bundle-parents": ["et-5/3/0"], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SD-WAN-SINET-SINET-17088 |", "circuits": [{"id": 705894, "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17088", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1479}, {"router": "mx1.ams.nl.geant.net", "name": "ae20.3020", "bundle": [], "bundle-parents": ["et-5/3/0"], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SD-WAN-SINET-SINET-17084 |", "circuits": [{"id": 705938, "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17084", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1478}, {"router": "mx1.ams.nl.geant.net", "name": "ae20.3153", "bundle": [], "bundle-parents": ["et-5/3/0"], "description": "SRV_L2CIRCUIT CUSTOMER SINET DFN #AMS-HAM-JAXA-SINET-DFN-14006 |", "circuits": [{"id": 706057, "name": "AMS-HAM-JAXA-SINET-DFN-14006", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1467}, {"router": "mx1.ams.nl.geant.net", "name": "ae21", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "LAG CUSTOMER MICROSOFT EXPRESSROUTE #1 SRF20047 |GEANT-EXR01-AMS21-PRI-06162020 ", "circuits": [], "snmp-index": 728}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.2", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER FCCN #FCCN-NOVESBE-EXPRESSROUTE-VLAN1944 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706526, "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 980}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.3", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER MICROSOFT #REDIRIS-UCLM-EXPRESSROUTE-VLAN411 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706055, "name": "REDIRIS-UCLM-EXPRESSROUTE-VLAN411", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1008}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.4", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER MICROSOFT #NORDUNET-LAUREA-EXPRESSROUTE-VLAN3900 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706058, "name": "NORDUNET-LAUREA-EXPRESSROUTE-VLAN3900", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1025}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.5", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER NORDUNET #NORDUNET-JYV-EXPRESSROUTE-VLAN3902 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707076, "name": "NORDUNET-JYV-EXPRESSROUTE-VLAN3902", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1030}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.6", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER REDIRIS #REDIRIS-USC-EXPRESSROUTE-VLAN409 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 708369, "name": "REDIRIS-USC-EXPRESSROUTE-VLAN409", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1002}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.7", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER NORDUNET #NORDUNET-OULU-EXPRESSROUTE-VLAN3904 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707082, "name": "NORDUNET-OULU-EXPRESSROUTE-VLAN3904", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1103}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.8", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER NORDUNET #NORDUNET-AALTO-EXPRESSROUTE-VLAN3906 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706994, "name": "NORDUNET-AALTO-EXPRESSROUTE-VLAN3906", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1111}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.9", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER MICROSOFT #BELNET-FGOV-EXPRESSROUTE-VLAN4086 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706048, "name": "BELNET-FGOV-EXPRESSROUTE-VLAN4086", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1048}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.10", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER FCCN #FCCN-IPP-EXPRESSROUTE-VLAN1946 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706996, "name": "FCCN-IPP-EXPRESSROUTE-VLAN1946", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1020}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.11", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER NORDUNET #NORDUNET-LTU-EXPRESSROUTE-VLAN3908 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706997, "name": "NORDUNET-LTU-EXPRESSROUTE-VLAN3908", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1087}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.12", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER NORDUNET #NORDUNET-HHU-EXPRESSROUTE-VLAN3910 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706560, "name": "NORDUNET-HHU-EXPRESSROUTE-VLAN3910", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1159}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.13", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER MICROSOFT #BELNET-ICT-EXPRESSROUTE-VLAN4087 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706047, "name": "BELNET-ICT-EXPRESSROUTE-VLAN4087", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1078}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.14", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER NORDUNET #NORDUNET-TUNI-EXPRESSROUTE-VLAN3912 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707047, "name": "NORDUNET-TUNI-EXPRESSROUTE-VLAN3912", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1180}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.15", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-NCCN-EXPRESSROUTE-VLAN4088 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 1316}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.17", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-ARPGAN-EXPRESSROUTE-VLAN4081 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 814}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.18", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-PREMIER-EXPRESSROUTE-VLAN4089 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 1454}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.19", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER CERN #CERN-CERN-EXPRESSROUTE-VLAN497 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706486, "name": "CERN-CERN-EXPRESSROUTE-VLAN497", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1483}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.20", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-ARTEV-EXPRESSROUTE-VLAN4090 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 930}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.21", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER BELNET #BELNET-ZWEV-EXPRESSROUTE-VLAN4091 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 969}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.22", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER GARR #GARR-ROMA-EXPRESSROUTE-VLAN4088 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707295, "name": "GARR-ROMA-EXPRESSROUTE-VLAN4088", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 978}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.23", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER GARR #GARR-UDMILANO-EXPRESSROUTE-VLAN4086 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707643, "name": "GARR-UDMILANO-EXPRESSROUTE-VLAN4086", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1018}, {"router": "mx1.ams.nl.geant.net", "name": "ae21.24", "bundle": [], "bundle-parents": ["xe-2/2/1"], "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MICROSOFT-EXPRESSROUTE-VLAN4084 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 1042}, {"router": "mx1.ams.nl.geant.net", "name": "irb.888", "bundle": [], "bundle-parents": [], "description": "SRV_TAAS INFRASTRUCTURE GTS #TAAS-CONTROL-AMSTERDAM-LOGICAL-INTERFACE | TAAS CONTROL", "circuits": [], "snmp-index": 1170}, {"router": "mx1.ams.nl.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #INFINERA-AMS-NL-MANAGEMENT-VRF-VLAN999 |", "circuits": [], "snmp-index": 797}, {"router": "mx1.ams.nl.geant.net", "name": "ge-0/3/6.2016", "bundle": [], "bundle-parents": [], "description": "SRV_MDVPN Customer GEANT #MDVPN-MS-ExpressRoute-POC", "circuits": [], "snmp-index": 864}, {"router": "mx1.ams.nl.geant.net", "name": "lt-11/1/0.21", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF??? | VPN-Proxy to GEANT PE for BGP-LU peering", "circuits": [], "snmp-index": 910}, {"router": "mx1.ams.nl.geant.net", "name": "lt-11/1/0.31", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF??? | VPN-Proxy to GEANT PE for IBGP", "circuits": [], "snmp-index": 911}, {"router": "mx1.ams.nl.geant.net", "name": "ae15.360", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_MDVPN CUSTOMER SURFNET #SURFnet-GN-PRACE-VPN-Proxy-Amsterdam-L3VPN | VPN-Proxy to NREN CE", "circuits": [{"id": 709647, "name": "SURFNET-GN-PRACE-VPN-PROXY-AMSTERDAM-L3VPN", "type": "MD-VPN (PROXY)", "status": "operational"}], "snmp-index": 940}, {"router": "rt2.ams.nl.geant.net", "name": "et-0/0/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | Coriant G30 link ", "circuits": [], "snmp-index": 563}, {"router": "rt2.ams.nl.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 549}, {"router": "rt2.ams.nl.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-ams-nl-RE_IAS | BGP Peering - RE Side", "circuits": [{"id": 710675, "name": "BGPPEERING-AMS-NL-RE-IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 553}, {"router": "rt2.ams.nl.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #AMS2-IAS-RE-Peering  | BGP Peering - IAS Side", "circuits": [], "snmp-index": 555}, {"router": "rt2.ams.nl.geant.net", "name": "et-0/0/2", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 |", "circuits": [], "snmp-index": 564}, {"router": "rt2.ams.nl.geant.net", "name": "xe-0/1/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #2 SRF20047 |GEANT-EXR02-AMS21-SEC-06162020 ", "circuits": [], "snmp-index": 560}, {"router": "rt2.ams.nl.geant.net", "name": "xe-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED |Oracle 1_2 Patched to NL.AMS.AMS9.S145.T05.H24.X11", "circuits": [], "snmp-index": 536}, {"router": "rt2.ams.nl.geant.net", "name": "xe-0/1/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED |Oracle 1_2 Patched to NL.AMS.AMS9.S145.T05.H24.X12", "circuits": [], "snmp-index": 537}, {"router": "rt2.ams.nl.geant.net", "name": "xe-0/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 538}, {"router": "rt2.ams.nl.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-0/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | ams-ams", "circuits": [], "snmp-index": 568}, {"router": "rt2.ams.nl.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-0/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK | ams-ams trunk", "circuits": [{"id": 708713, "name": "AMS-AMS2-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 572}, {"router": "rt2.ams.nl.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-0/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE LON SRF0000001 | ams-lon | Coriant G30 100G", "circuits": [], "snmp-index": 569}, {"router": "rt2.ams.nl.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-0/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS2-LON-IPTRUNK-100G | AMS-LON |Coriant G30 100G", "circuits": [{"id": 708739, "name": "AMS2-LON-IPTRUNK-100G", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 571}, {"router": "rt2.ams.nl.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "LAG CUSTOMER MICROSOFT EXPRESSROUTE#2  |GEANT-EXR02-AMS21-SEC-06162020", "circuits": [], "snmp-index": 535}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.2", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER FCCN   #FCCN_NoveSBE_ExpressRoute_Vlan1945  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707126, "name": "FCCN_NOVESBE_EXPRESSROUTE_VLAN1945", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 585}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.3", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER Microsoft #RedIRIS_UCLM_ExpressRoute_Vlan412", "circuits": [{"id": 707138, "name": "REDIRIS_UCLM_EXPRESSROUTE_VLAN412", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 605}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.4", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER NORDUNET   #Nordunet_Laurea_ExpressRoute_Vlan3901  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707123, "name": "NORDUNET_LAUREA_EXPRESSROUTE_VLAN3901", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 603}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.5", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER NORDUNET   #NORDUNET_JYV_ExpressRoute_VLAN3903  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707125, "name": "NORDUNET_JYV_EXPRESSROUTE_VLAN3903", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 587}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.6", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER REDIRIS   #RedIRIS_USC_ExpressRoute_Vlan408  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707129, "name": "REDIRIS_USC_EXPRESSROUTE_VLAN408", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 581}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.7", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER NORDUNET   #Nordunet_OULU_ExpressRoute_Vlan3905  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707131, "name": "NORDUNET_OULU_EXPRESSROUTE_VLAN3905", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 589}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.8", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER NORDUNET   #Nordunet_Aalto_ExpressRoute_Vlan3907  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707130, "name": "NORDUNET_AALTO_EXPRESSROUTE_VLAN3907", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 583}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.9", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER BELNET   #Belnet_fgov_ExpressRoute_Vlan4090  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707128, "name": "BELNET_FGOV_EXPRESSROUTE_VLAN4090", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 591}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.10", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER FCCN   #FCCN_IPP_ExpressRoute_Vlan1947  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707124, "name": "FCCN_IPP_EXPRESSROUTE_VLAN1947", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 577}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.11", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER NORDUNET   #Nordunet_LTU_ExpressRoute_Vlan3909  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707121, "name": "NORDUNET_LTU_EXPRESSROUTE_VLAN3909", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 593}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.12", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER NORDUNET   #Nordunet_HHU_ExpressRoute_Vlan3911  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 708357, "name": "NORDUNET_HHU_EXPRESSROUTE_VLAN3911", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 595}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.13", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER BELNET   #BELNET_ICT_ExpressRoute_Vlan4091  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707122, "name": "BELNET_ICT_EXPRESSROUTE_VLAN4091", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 597}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.14", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER NORDUNET   #Nordunet_TUNI_ExpressRoute_Vlan3913  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707119, "name": "NORDUNET_TUNI_EXPRESSROUTE_VLAN3913", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 579}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.15", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER BELNET   #Belnet_NCCN_ExpressRoute_Vlan4092  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707127, "name": "BELNET_NCCN_EXPRESSROUTE_VLAN4092", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 599}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.17", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER BELNET   #Belnet_ARPGAN_ExpressRoute_VLAN4080  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707139, "name": "BELNET_ARPGAN_EXPRESSROUTE_VLAN4080", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 609}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.18", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER BELNET   #Belnet_Premier_ExpressRoute_VLAN4093  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706557, "name": "BELNET_PREMIER_EXPRESSROUTE_VLAN4093", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 601}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.19", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER CERN   #CERN_CERN_ExpressRoute_VLAN497_Backup  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706486, "name": "CERN-CERN-EXPRESSROUTE-VLAN497", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 607}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.20", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER BELNET   #Belnet_ARTEV_ExpressRoute_VLAN4081  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707120, "name": "BELNET_ARTEV_EXPRESSROUTE_VLAN4081", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 611}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.21", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER BELNET #Belnet_ZWEV_ExpressRoute_VLAN4082  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707140, "name": "BELNET_ZWEV_EXPRESSROUTE_VLAN4082", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 613}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.22", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER GARR   #GARR_ROMA_ExpressRoute_Vlan4089  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707342, "name": "GARR_ROMA_EXPRESSROUTE_VLAN4089", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 615}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.23", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER GARR   #GARR_UDMilano_ExpressRoute_Vlan4087  | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707644, "name": "GARR_UDMILANO_EXPRESSROUTE_VLAN4087", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 617}, {"router": "rt2.ams.nl.geant.net", "name": "ae10.24", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GCS CUSTOMER BELNET MICROSOFT | #BELNET_MICROSOFT_ExpressRoute_VLAN_4083 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 708990, "name": "BELNET_STADKORTRIJK_EXPRESSROUTE_VLAN_4083", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 619}, {"router": "rt2.ams.nl.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 542}, {"router": "mx1.lon.uk.geant.net", "name": "xe-0/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 621}, {"router": "mx1.lon.uk.geant.net", "name": "xe-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ORIENTPLUS SRF9917037 |", "circuits": [], "snmp-index": 622}, {"router": "mx1.lon.uk.geant.net", "name": "xe-0/0/1.111", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN RE_Interconnect CSTNET #CSTNET_LON_LHCONE | ASN23911", "circuits": [{"id": 661398, "name": "CSTNET_LON_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1155}, {"router": "mx1.lon.uk.geant.net", "name": "xe-0/0/1.200", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT ORIENTPLUS #UK-TEIN-BJ-ORIENTplus | ASN23911 |", "circuits": [{"id": 661591, "name": "UK-TEIN-BJ-ORIENTPLUS", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 864}, {"router": "mx1.lon.uk.geant.net", "name": "xe-0/0/1.1001", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER ORIENTPLUS ORIENTPLUS #Test_CCC-VLAN ", "circuits": [], "snmp-index": 865}, {"router": "mx1.lon.uk.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 625}, {"router": "mx1.lon.uk.geant.net", "name": "xe-0/1/1", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF0000001 |", "circuits": [], "snmp-index": 626}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915877 | LON01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 592}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915881 | infinera-dna.lon.uk DCN port", "circuits": [], "snmp-index": 593}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/1.132", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #dna-lon-uk-esxi| Infinera DNA ESXI", "circuits": [{"id": 660431, "name": "DNA-LON-UK-ESXI", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1437}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 594}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL", "circuits": [], "snmp-index": 595}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 596}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS GOFF SRF9928061 | LON TAAS 01", "circuits": [], "snmp-index": 597}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS EUMETCAST SRF9926391 | Richard EUMETCAST RECEIVER", "circuits": [], "snmp-index": 598}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ESNET SRF9928015 | Lon-EEX_ESNET_1G", "circuits": [], "snmp-index": 599}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER GEANT CORPORATE SRF000001 | GEANT Corporate to SRX2.CH - Via Vodafone Circuit ID H03684A", "circuits": [{"id": 679232, "name": "GEANT CORPORATE TO MX1.LON - VIA VODAFONE", "type": "GEANT IP", "status": "operational"}], "snmp-index": 600}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/8.10", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER GEANT #GEANT_CORPORATE-ViaVodafone | GEANT Corporate to SRX2.CH - Via Vodafone ", "circuits": [{"id": 679360, "name": "GEANT_CORPORATE-VIAVODAFONE", "type": "GEANT IP", "status": "operational"}], "snmp-index": 841}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/8.11", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER GEANT #GEANT_CORPORATE_ViaVodafone-VRF | GEANT Corporate to SRX2.CH - Via Vodafone - for VRF", "circuits": [], "snmp-index": 845}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/8.12", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER GEANT #GEANT_CORPORATE_ViaVodafone-VRF-TEST | GEANT Corporate to SRX2.CH - Via Vodafone - Dashboard BGP Test VLAN", "circuits": [{"id": 678920, "name": "TEST-BGP LINK-LON1 (DO NOT OPEN A TICKET)", "type": "GEANT IP", "status": "operational"}], "snmp-index": 700}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/8.996", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER GEANT #GEANT_OPERATIONS_LabConnectivity | GEANT MX1.LON Infinera VRF to Operations Lab ", "circuits": [{"id": 678999, "name": "GEANT_OPERATIONS_LABCONNECTIVITY", "type": "GEANT IP", "status": "operational"}], "snmp-index": 631}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | lon uk POP LAN", "circuits": [], "snmp-index": 601}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon-uk-psmp-bwctl_vlan21 |psmp-gn-drac-lon-uk.geant.org pS iDRAC", "circuits": [{"id": 661299, "name": "PS-LON-UK-PSMP-BWCTL_VLAN21", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 775}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon-uk-psmp-bwctl_vlan23 |psmp-lhc-drac-lon-uk.geant.org pS iDRAC", "circuits": [{"id": 661620, "name": "PS-LON-UK-PSMP-BWCTL_VLAN23", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 620}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.30", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #EXFO_MANAGEMENT_VLAN30 | EXFO Management VLAN 30", "circuits": [{"id": 709297, "name": "EXFO_MANAGEMENT_VLAN30", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 890}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.95", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DANTE_TECHNICAL_CUSTOMER_SUPPORT | DANTE Technical Customer Support n", "circuits": [{"id": 661576, "name": "DANTE_TECHNICAL_CUSTOMER_SUPPORT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 813}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.130", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #dna-lon-uk-ilo| Infinera DNA iLO", "circuits": [{"id": 661498, "name": "DNA-LON-UK-ILO", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 821}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.131", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #dna-lon-uk | Infinera DNA User", "circuits": [{"id": 661633, "name": "DNA-LON-UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 822}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.201", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #LON_Groove_1 | LON Groove 1  ", "circuits": [{"id": 661483, "name": "LON_GROOVE_1", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 992}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.202", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #LON_Groove_1_Management | LON Groove 1 Direct Management", "circuits": [{"id": 661881, "name": "LON_GROOVE_1_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 993}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.240", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SINET_EDGE_DEVICE_IDRAC_LON_UK_VLAN240 |SINET edge-device-iDRAC CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20171128", "circuits": [{"id": 661457, "name": "SINET_EDGE_DEVICE_IDRAC_LON_UK_VLAN240", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 641}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.242", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SINET_IDRAC_LON_UK_VLAN242 |SINET HOST-iDRAC CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20171128", "circuits": [{"id": 661251, "name": "SINET_IDRAC_LON_UK_VLAN242", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 642}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.300", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NPL_TEST_LON_UK_VLAN300 | NPL test", "circuits": [{"id": 661352, "name": "NPL_TEST_LON_UK_VLAN300", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 510}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.301", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #LON_Groove_3 | LON Groove 3  ", "circuits": [{"id": 661898, "name": "LON_GROOVE_3", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1346}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.302", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access   #LON_Groove_3_Management | LON Groove 3 Direct Management", "circuits": [{"id": 661355, "name": "LON_GROOVE_3_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1347}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.310", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #DTN_PROJECT_VLAN310|SRV_GLOBAL INFRASTRUCTURE VLAN310|SRV_GLOBAL INFRASTRUCTURE VLAN310 | DTN-Project CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20171206", "circuits": [{"id": 661669, "name": "DTN_PROJECT_VLAN310", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 729}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.401", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #LON_Groove_2 | LON Groove 2  ", "circuits": [{"id": 661499, "name": "LON_GROOVE_2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1430}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.402", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #LON_Groove_2_Management | LON Groove 2 Direct Management", "circuits": [{"id": 661594, "name": "LON_GROOVE_2_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1431}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.991", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access #LON_Groove | LON Groove G30", "circuits": [{"id": 707238, "name": "LON_GROOVE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 711}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.3019", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SD-WAN-SINET-SINET-17088 |", "circuits": [{"id": 705894, "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17088", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 784}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.3020", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SD-WAN-SINET-SINET-17084 |", "circuits": [{"id": 705938, "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17084", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 699}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/2/9.3021", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SINET_INTERNET_ACCESS_LON_UK_VLAN3021 | VLAN3021 SINET Internet access CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20171128", "circuits": [{"id": 660551, "name": "SINET_INTERNET_ACCESS_LON_UK_VLAN3021", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 643}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915879 | LON01-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 602}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 603}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BOD TestPort | connected to ge-0/3/3", "circuits": [], "snmp-index": 604}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE SRF00001 | #Test_Interface_for_GCSTesting connected to ge-0/3/2", "circuits": [], "snmp-index": 605}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/3.65", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER CustRom1 CustRom2 | #pre-prod-rr-20210527-7 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 661}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/3.67", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER Test Connection | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 616}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/3.68", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER Test Connection | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 587}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/3.84", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER CustRom1 CustRom2 | #pre-prod-rr-20210527-9 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [], "snmp-index": 694}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE - Unused - Was cbg-lon Virgin-Media ID CAL0151087 - Removed 07/08/19", "circuits": [], "snmp-index": 606}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS RIPE SRF9926831 | RIPE ATLAS ANCHOR", "circuits": [], "snmp-index": 607}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 608}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 609}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 610}, {"router": "mx1.lon.uk.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 611}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER_GEO TENET #TENET_GEO_UK_1 |  SRF9943089 | TENET 10G access to GeO", "circuits": [{"id": 661879, "name": "LON-LON_GEANTOPEN_ESNET-TENET_180871", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}, {"id": 669233, "name": "TENET_GEO_UK_1", "type": "GEANT OPEN PORT", "status": "operational"}], "snmp-index": 847}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/0/0.200", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER TENET PSNC #lon-lon_GEANTOPEN_PSNC-TENET_18067 |", "circuits": [{"id": 661350, "name": "LON-LON_GEANTOPEN_PSNC-TENET_18067", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 710}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/0/0.201", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER TENET ESNET #lon-lon_GEANTOpen_Esnet-TENET_180871 |", "circuits": [{"id": 661879, "name": "LON-LON_GEANTOPEN_ESNET-TENET_180871", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1013}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/0/0.220", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER TENET INTERNET2 #lon-lon_GEANTOPEN_INTERNET2-TENET_19004 |", "circuits": [{"id": 661301, "name": "LON-LON_GEANTOPEN_INTERNET2-TENET_19004", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1426}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/0/0.240", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER TENET NORDUNET #lon-lon_GEANTOPEN_NORDUNET-TENET_18075 |", "circuits": [{"id": 661964, "name": "LON-LON_GEANTOPEN_NORDUNET-TENET_18075", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 944}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/0/0.420", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER TENET NEAAR #lon-lon_GEANTOPEN_NEAAR-TENET_18097 |", "circuits": [{"id": 709303, "name": "LON-LON_GEANTOPEN_NEAAR-TENET_18097", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1337}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 848}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS DTN SRF0000001 | DATA 10G ", "circuits": [], "snmp-index": 849}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/0/2.702", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #LON-AMS-DTN-GENERATOR | RARE P4 TESTBED", "circuits": [{"id": 707052, "name": "LON-AMS-DTN-GENERATOR", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 986}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 850}, {"router": "mx1.lon.uk.geant.net", "name": "et-1/1/0", "bundle": ["ae26"], "bundle-parents": [], "description": "PHY CUSTOMER_GEO IndianaUni #IndianaUni_GEO_UK_1 |  P_ae26 SRF20098|NEA3R", "circuits": [], "snmp-index": 851}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/2/0", "bundle": ["ae21"], "bundle-parents": [], "description": "PHY CUSTOMER IUCC P_AE21 SRF9951189 | IUCC-AP1-LL1 - Tamares Telecom ID:  GNT-E10-004", "circuits": [], "snmp-index": 550}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/2/1", "bundle": ["ae21"], "bundle-parents": [], "description": "PHY CUSTOMER IUCC P_AE21 SRF9951191 | IUCC-AP1-LL2 - Tamares Telecom ID:  GNT-E10-005", "circuits": [], "snmp-index": 551}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/2/2", "bundle": ["ae21"], "bundle-parents": [], "description": "PHY CUSTOMER IUCC P_AE21 SRF9951189 | IUCC-AP1-LL3 - Tamares Telecom ID:  GNT-E10-006", "circuits": [], "snmp-index": 852}, {"router": "mx1.lon.uk.geant.net", "name": "xe-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1040}, {"router": "mx1.lon.uk.geant.net", "name": "et-1/3/0", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER_GEO AARNET #AARNET_GEO_UK_1 |  SRF20044|", "circuits": [], "snmp-index": 1055}, {"router": "mx1.lon.uk.geant.net", "name": "et-1/3/0.2100", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER AARNET NETHERLIGHT #lon-lon_GEANTOpen_AARNET-NETHERLIGHT_21003", "circuits": [], "snmp-index": 662}, {"router": "mx1.lon.uk.geant.net", "name": "et-1/3/0.3104", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER AARNET SINGAREN #lon-lon_GEANTOpen_AARNET-SINGAREN_CAE1_20044_VL3104 |", "circuits": [{"id": 705943, "name": "LON-LON_GEANTOPEN_AARNET-SINGAREN_CAE1_20044_VL3104", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 991}, {"router": "mx1.lon.uk.geant.net", "name": "gr-1/3/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS #FORTIGATE_TUNNEL_TO_CH_LON_UK | Tunnel to Fortigate CH", "circuits": [], "snmp-index": 1194}, {"router": "mx1.lon.uk.geant.net", "name": "lt-1/3/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 1225}, {"router": "mx1.lon.uk.geant.net", "name": "lt-1/3/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-lon-uk-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710700, "name": "BGPPEERING-LON-UK-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1228}, {"router": "mx1.lon.uk.geant.net", "name": "lt-1/3/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #LON-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 1229}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | TENET 100Gb GEANT OPEN Upgrade", "circuits": [], "snmp-index": 1557}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER_GEO Netherlight #Netherlight_GEO_UK_1 |  SRF9928315 | GeO NETHERLIGHT 100G | NETHERLIGHT ID: Asd001A_8700_08:8/1", "circuits": [{"id": 668908, "name": "NETHERLIGHT_GEO_UK_1", "type": "GEANT OPEN PORT", "status": "operational"}], "snmp-index": 1558}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.524", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER CANARIE QNREN #lon-lon_GEANTOpen_CANARIE-QNREN_15024 |", "circuits": [{"id": 661996, "name": "LON-LON_GEANTOPEN_CANARIE-QNREN_15024", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1585}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.906", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #lon-lon_MISC_GEANT-INTERNET2_9940197 |", "circuits": [{"id": 661593, "name": "LON-LON_MISC_GEANT-INTERNET2_9940197", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1587}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.2050", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 NETHERLIGHT #lon-lon_GEANTOpen_INTERNET2-NETHERLIGHT_18073 |", "circuits": [{"id": 661229, "name": "LON-LON_GEANTOPEN_INTERNET2-NETHERLIGHT_18073", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1588}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.2100", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER AARNET NETHERLIGHT #lon-lon_GEANTOpen_AARNET-NETHERLIGHT_21003", "circuits": [], "snmp-index": 663}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.2102", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN RE_INTERCONNECT AARNET #AARNET_LON_LHCONE_AER | ASN7575", "circuits": [{"id": 709695, "name": "AARNET_LON_LHCONE_AER", "type": "L3-VPN", "status": "operational"}], "snmp-index": 907}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.2103", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT AARNET #UK_AARNET_AER | ASN7575 | AER via NETHERLIGHT", "circuits": [{"id": 709697, "name": "UK_AARNET_AER", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 909}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.2126", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER CERN CANARIE #lon_lon_Canarie_CERN_15014 |", "circuits": [{"id": 661472, "name": "LON_LON_CANARIE_CERN_15014", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1589}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.2128", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET INTERNET2 #lon-lon_GEANTOpen_NORDUNET-INTERNET2_17022 |", "circuits": [{"id": 661730, "name": "LON-LON_GEANTOPEN_NORDUNET-INTERNET2_17022", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1590}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.2160", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT SINGAREN #UK_SINGAREN_vlan2160 | ASN136968 | ", "circuits": [{"id": 708101, "name": "LON-LON2_GEANTOPEN_SINGAREN-NETHERLIGHT_21019", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 747}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.2779", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT WIX #lon-lon_GEANTOpen_Netherlight-WIX |", "circuits": [{"id": 707103, "name": "LON-LON_GEANTOPEN_NETHERLIGHT-WIX", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1591}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.3001", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT QNREN #lon-lon_GEANTOpen_Netherlight-QNREN_15032 |", "circuits": [{"id": 661767, "name": "LON-LON_GEANTOPEN_NETHERLIGHT-QNREN_15032", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1592}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.3100", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SURFNET AARNET #lon_lon-SURFNET-AARNET_19097 |", "circuits": [{"id": 705937, "name": "LON_LON-SURFNET-AARNET_19097", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 590}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.3803", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET NETHERLIGHT  #NORDU_TO_NETHERLIGHT_TEST | Nordu-to-Netherlight test 1/12/2014", "circuits": [{"id": 661953, "name": "NORDU_TO_NETHERLIGHT_TEST", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1593}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.3806", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT  #WIX_TO_NETHERLIGHT_TEST1 | WIX-to-Netherlight test 03/12/2014", "circuits": [{"id": 661474, "name": "WIX_TO_NETHERLIGHT_TEST1", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1594}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.3807", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT  #WIX_TO_NETHERLIGHT_TEST2 | WIX-to-Netherlight test 03/12/2014", "circuits": [{"id": 661462, "name": "WIX_TO_NETHERLIGHT_TEST2", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1595}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.3810", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT  #WIX_TO_NETHERLIGHT_TEST3 | WIX-to-Netherlight test 03/12/2014", "circuits": [{"id": 661534, "name": "WIX_TO_NETHERLIGHT_TEST3", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1596}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.3880", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT  #WIX_TO_NETHERLIGHT_TEST | WIX-to-Netherlight test 02/12/2014", "circuits": [{"id": 661181, "name": "WIX_TO_NETHERLIGHT_TEST", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1597}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/0/5.4020", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT WIX #lon-lon_GEANTOpen_Internet2-Netherlight_15034 |", "circuits": [{"id": 706967, "name": "LON-LON_GEANTOPEN_INTERNET2-NETHERLIGHT_15034", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1598}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/1/2", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY RE_INTERCONNECT SINGAREN P_AE12 SRF19005 | CAE1 100Gb LL TTI Circuit ID:WL065785 ", "circuits": [], "snmp-index": 1559}, {"router": "mx1.lon.uk.geant.net", "name": "et-2/1/5", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY CUSTOMER BELNET SRF19118 P_AE16 | BELNET AP2 | ASN2611", "circuits": [], "snmp-index": 1560}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/0", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9943245 | PT ID: LIS/FCC-LON/LD8 10G0001 LIS-LON", "circuits": [], "snmp-index": 743}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/1", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9943247 | PT ID: LIS/FCC-LON/LD8 10G0002 LIS-LON", "circuits": [], "snmp-index": 745}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/2", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER_GEO HBKU #HBKU_GEO_UK_1 |  SRF18085 | Equinix ID: 20873393 |", "circuits": [{"id": 669142, "name": "HBKU_GEO_UK_1", "type": "GEANT OPEN PORT", "status": "operational"}], "snmp-index": 748}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/2.2200", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT HBKU #UK_HBKU | ASN34945 | ", "circuits": [{"id": 661378, "name": "UK_HBKU", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1342}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/2.2210", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER HBKU INTERNET2 #lon-lon_GEANTOPEN_HBKU-INTERNET2_190091 |", "circuits": [{"id": 661607, "name": "LON-LON_GEANTOPEN_HBKU-INTERNET2_190091", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1434}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/3", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9943311 | PT ID: LIS/FCC-LON/LD8 10G0003 LIS-LON", "circuits": [], "snmp-index": 749}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | psmp-lhc-mgmt-lon-uk.geant.org  pS MGMT", "circuits": [{"id": 708184, "name": "PSMP_LHC_MANAGEMENT_LON_UK_VLAN0", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1449}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/4.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PSMP_LHC_MANAGEMENT_LON_UK_VLAN0 | psmp-lhc-mgmt-lon-uk.geant.org pS MGMT", "circuits": [{"id": 708184, "name": "PSMP_LHC_MANAGEMENT_LON_UK_VLAN0", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1001}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | psmp-lhc-owd-lon-uk.geant.org pS OWAMP (LHCONE)", "circuits": [{"id": 708281, "name": "PSMP_LHC_OWD_LON_UK_VLAN0", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1452}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/5.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PSMP_LHC_OWD_LON_UK_VLAN0 | psmp-lhc-owd-lon-uk.geant.org pS OWAMP (LHCONE)", "circuits": [{"id": 708281, "name": "PSMP_LHC_OWD_LON_UK_VLAN0", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1004}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | psmp-gn-bw-lon-uk.geant.org pS BWCTL", "circuits": [{"id": 708187, "name": "PS-LON-UK-PSMP-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1450}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/6.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon-uk-psmp-bwctl | psmp-gn-bw-lon-uk.geant.org pS BWCTL", "circuits": [{"id": 708187, "name": "PS-LON-UK-PSMP-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1477}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9925113 | psmp-lhc-bw-lon-uk.geant.org pS BWCTL (LHCONE)", "circuits": [{"id": 708314, "name": "PS-LON-UK-PSMP-BWCTL_LHCONE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1451}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/0/7.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon-uk-psmp-bwctl_lhcone | psmp-lhc-bw-lon-uk.geant.org pS BWCTL (LHCONE)", "circuits": [{"id": 708314, "name": "PS-LON-UK-PSMP-BWCTL_LHCONE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1478}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/1/0", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF0000001 |", "circuits": [], "snmp-index": 1457}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1458}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/1/2", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER SURFNET P_AE11 SRF9925779 | 3", "circuits": [], "snmp-index": 1459}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/1/3", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER SURFNET P_AE11 SRF9925775 | 2", "circuits": [], "snmp-index": 1460}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/1/4", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER SURFNET P_AE11 SRF9925777 | 1", "circuits": [], "snmp-index": 1461}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/1/5", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER JANET | ams-lon_LOFAR_JANET-NetherLight_10007  hairpin - to customer", "circuits": [], "snmp-index": 1462}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/1/5.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER JANET | ams-lon_LOFAR_JANET-NetherLight_10007 hairpin - to customer", "circuits": [], "snmp-index": 773}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/1/6", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER JISC BOD SRF9925119 |", "circuits": [], "snmp-index": 1463}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/1/7", "bundle": ["ae24"], "bundle-parents": [], "description": "PHY PRIVATE | ORACLE P_AE24 SRF20010 | ASN31898", "circuits": [], "snmp-index": 1464}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/0", "bundle": ["ae23"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae23 | Uplink to sw4.lon.uk.geant.net - xe-0/2/0", "circuits": [], "snmp-index": 751}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/1", "bundle": ["ae23"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_ae23 | Uplink to sw4.lon.uk.geant.net - xe-0/2/1", "circuits": [], "snmp-index": 752}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | psmp-gn-mgmt-lon-uk.geant.org  pS MGMT", "circuits": [{"id": 708299, "name": "PSMP_GN_MANAGEMENT_LON_UK_VLAN0", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 757}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PSMP_GN_MANAGEMENT_LON_UK_VLAN0 | psmp-gn-mgmt-lon-uk.geant.org pS MGMT", "circuits": [{"id": 708299, "name": "PSMP_GN_MANAGEMENT_LON_UK_VLAN0", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1011}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | psmp-gn-owd-lon-uk.geant.org pS OWAMP", "circuits": [{"id": 661593, "name": "LON-LON_MISC_GEANT-INTERNET2_9940197", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 759}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/3.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | #psmp-gn-owd-lon-uk.geant.org pS OWAMP", "circuits": [{"id": 678566, "name": "PSMP-GN-OWD-LON-UK.GEANT.ORG", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1023}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/3.902", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT INTERNET2 #lon-lon_MISC_GEANT-INTERNET2_9940169 |", "circuits": [{"id": 678922, "name": "LON-LON_MISC_GEANT-INTERNET2_9940169", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1024}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/3.906", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT INTERNET2 #lon-lon_MISC_GEANT-INTERNET2_9940197 |", "circuits": [{"id": 661593, "name": "LON-LON_MISC_GEANT-INTERNET2_9940197", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1025}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/4", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER BELNET SRF9913019 |", "circuits": [{"id": 708279, "name": "BRU-LON_IX_BELNET-LON_13019", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1468}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/4.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET BELNET #bru-lon_IX_BELNET-LON_13019 |", "circuits": [{"id": 708279, "name": "BRU-LON_IX_BELNET-LON_13019", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1493}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/5", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT UBUNTUNET SRF0000001 | GEANT+", "circuits": [], "snmp-index": 1465}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/5.25", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT RE_INTERCONNECT UBUNTUNET GARR #lon-mil2_ASI_BSC_to_Fucino_Ubuntunet-GARR_20008 |", "circuits": [{"id": 705891, "name": "LON-MIL2_ASI_BSC_TO_FUCINO_UBUNTUNET-GARR_20008", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 766}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/5.1500", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT RE_INTERCONNECT UBUNTUNET NETHERLIGHT #AMS-LON-JIVE-NETHERLIGHT-UBUNTUNET-12008 |", "circuits": [{"id": 705454, "name": "AMS-LON-JIVE-NETHERLIGHT-UBUNTUNET-12008", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1494}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/5.2369", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT RE_INTERCONNECT UBUNTUNET ESNET #ams-lon_ESnet-UbuntuNet_14020 |", "circuits": [{"id": 706028, "name": "AMS-LON_ESNET-UBUNTUNET_14020", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1495}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/6", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER JISC SRF9925215 | GEANT+ 2", "circuits": [{"id": 705452, "name": "ATH-LON_FUTUREINTERNET_GRNET-JANET_12204", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1466}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/6.196", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS JISC #lon-mar_OFELIA_JANET-RedIRIS_13013 |", "circuits": [{"id": 708363, "name": "LON-MAD_OFELIA_JANET-REDIRIS_13013", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1499}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/6.692", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER JISC GRNET #ath-lon_UNI_Thessaly_GRnet-Janet_12204 |", "circuits": [{"id": 705452, "name": "ATH-LON_FUTUREINTERNET_GRNET-JANET_12204", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1501}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/6.1225", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER JISC GRNET #ath-lon_CONTENT_GRNET-JANET_15031 |", "circuits": [{"id": 705435, "name": "ATH-LON_CONTENT_GRNET-JANET_15031", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1502}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/7", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER JISC SRF9925217 | GEANT+ 1", "circuits": [{"id": 705480, "name": "BRU-LON_FED4FIRE_BELNET-JANET_14023", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1467}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/7.306", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #AMS-LON-ELVBI-JANET-NETHERLIGHT-12010 |", "circuits": [{"id": 705920, "name": "AMS-LON-ELVBI-JANET-NETHERLIGHT-12010", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1503}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/7.722", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #AMS-LON-EXPRES-NETHERLIGHT-JANET-07010 |", "circuits": [{"id": 705923, "name": "AMS-LON-EXPRES-NETHERLIGHT-JANET-07010", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1504}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/7.723", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #AMS-LON-EXPRES-NETHERLIGHT-JANET-07011 |", "circuits": [{"id": 705921, "name": "AMS-LON-EXPRES-NETHERLIGHT-JANET-07011", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1505}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/7.1007", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET JISC  #bru-lon_Fed4FIRE_BELNET-JANET_14023 |", "circuits": [{"id": 705480, "name": "BRU-LON_FED4FIRE_BELNET-JANET_14023", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1506}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/7.3004", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #AMS-LON-EXPRES-NETHERLIGHT-JANET-18009 |", "circuits": [{"id": 705427, "name": "AMS-LON-EXPRES-NETHERLIGHT-JANET-18009", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1507}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/0", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9949500 | PT ID: LIS/FCC-LON/LD8 10G0004 LIS-LON", "circuits": [], "snmp-index": 1469}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/1", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT SINGAREN SRF9941158 |", "circuits": [{"id": 659046, "name": "LON-LON2_SINGAREN_GEANT", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 1470}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/1.1000", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT SINGAREN #UK_SINGAREN_vlan1000 | ASN136968 | ", "circuits": [{"id": 661473, "name": "UK_SINGAREN_VLAN1000", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1561}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/1.3179", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SINGAREN SINGAREN #lon-lon_GEANT2_SingAREN-SingAREN_1708 |", "circuits": [{"id": 705900, "name": "LON-LON_GEANT2_SINGAREN-SINGAREN_1708", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 583}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/2", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT UBUNTUNET SRF996314", "circuits": [], "snmp-index": 1471}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/2.100", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT UBUNTUNET #UK_UBUNTUNET | ASN36944 | ", "circuits": [{"id": 661682, "name": "UK_UBUNTUNET", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1564}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/2.401", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET CANARIE #lon-lon_MISC_UBUNTUNET-CANARIE_170351 |", "circuits": [{"id": 709304, "name": "LON-LON_MISC_UBUNTUNET-CANARIE_170351", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1565}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/2.602", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET WACREN #lon-lon-UBUNTUNET-WACREN_20103 |", "circuits": [{"id": 705895, "name": "LON-LON-UBUNTUNET-WACREN_20103", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1236}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/2.801", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET CANARIE #lon-lon2_MISC_UBUNTUNET-INTERNET2_170341 |", "circuits": [{"id": 709301, "name": "LON-LON-MISC-UBUNTUNET-INTERNET2-170341", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1566}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/3", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER_GEO PSNC #PSNC_GEO_UK_1 |  SRF9941269 | PSNC 10G access to GeO", "circuits": [{"id": 669198, "name": "PSNC_GEO_UK_1", "type": "GEANT OPEN PORT", "status": "operational"}], "snmp-index": 1472}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/3.200", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER PSNC TENET #lon-lon_GEANTOPEN_PSNC-TENET_18067 |", "circuits": [{"id": 661350, "name": "LON-LON_GEANTOPEN_PSNC-TENET_18067", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1568}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/4", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER LON | #bru-lon_IX_Belnet-LON_20009  hairpin - to customer", "circuits": [{"id": 674134, "name": "BRU-LON_IX_BELNET-LON_20009", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 1473}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/4.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER LON | #bru-lon_IX_Belnet-LON_20009 hairpin - to customer", "circuits": [], "snmp-index": 774}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/5", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER LON | bru-lon_IX_BELNET-LON_18002 hairpin - to customer", "circuits": [], "snmp-index": 1474}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/5.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER LON | bru-lon_IX_BELNET-LON_18002 - to customer", "circuits": [], "snmp-index": 776}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/6", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER BELNET SRF9927563 | BELNET AP2", "circuits": [], "snmp-index": 1475}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/3/7", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Maeen GEANT OPEN \u0096 London-1 | Patched to PP0110:1081678 11/12", "circuits": [], "snmp-index": 1476}, {"router": "mx1.lon.uk.geant.net", "name": "et-4/0/2", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 SRF0000001 | Coriant G30 link ", "circuits": [], "snmp-index": 1294}, {"router": "mx1.lon.uk.geant.net", "name": "et-4/0/5", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 SRF9941657 | dub-lon | Century Link (L3) ID: 440233727", "circuits": [], "snmp-index": 1295}, {"router": "mx1.lon.uk.geant.net", "name": "et-4/1/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS DTN | 100G testing", "circuits": [], "snmp-index": 1296}, {"router": "mx1.lon.uk.geant.net", "name": "et-4/1/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS DTN-PROJECT SRF0000001 | 100G Testing CONTACT: Richard.Hughes-Jones@geant.org IMPLEMENTED: ????????", "circuits": [], "snmp-index": 1216}, {"router": "mx1.lon.uk.geant.net", "name": "et-4/1/5", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER JISC P_AE10 SRF18084 |", "circuits": [], "snmp-index": 1320}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/2", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER JISC P_AE10 SRF9925125 |", "circuits": [], "snmp-index": 1203}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER_GEO NORDUnet #NORDUnet_GEO_UK_1 |  SRF9928249 | NORDUNET 100G access to GeO", "circuits": [{"id": 659121, "name": "NORDUNET-AP1-LL", "type": "GEANT OPEN PORT", "status": "operational"}, {"id": 660634, "name": "LON-LON_GEANTOPEN_ESNET-NORDUNET_15039_2", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}, {"id": 661327, "name": "LON-LON_GEANTOPEN_ESNET-NORDUNET_15039_3", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}, {"id": 661535, "name": "LON-LON_GEANTOPEN_ESNET-NORDUNET_15039_1", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}, {"id": 661650, "name": "NORDU_TO_WIX_TEST", "type": "GEANT PLUS", "status": "operational"}, {"id": 707121, "name": "NORDUNET_LTU_EXPRESSROUTE_VLAN3909", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1204}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.111", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN CUSTOMER NORDUNET #NORDUNET_AP1_IPv4_LHCONE | ASN2603", "circuits": [{"id": 661194, "name": "NORDUNET_AP1_IPV4_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1268}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.123", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon_GEANTOpen_ESnet-NORDUNET_15039_1  | ", "circuits": [{"id": 661535, "name": "LON-LON_GEANTOPEN_ESNET-NORDUNET_15039_1", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1269}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.240", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET TENET #lon-lon_GEANTOPEN_NORDUNET-TENET_18075 |", "circuits": [{"id": 661964, "name": "LON-LON_GEANTOPEN_NORDUNET-TENET_18075", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 943}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.1002", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET TEIN  #lon-lon_GEANTOpen_NORDUNET-TEIN_17026  |", "circuits": [{"id": 705906, "name": "LON-LON_GEANTOPEN_NORDUNET-TEIN_17026", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1272}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.2010", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon_GEANTOpen_ESnet-NORDUNET_15039_2 |", "circuits": [{"id": 660634, "name": "LON-LON_GEANTOPEN_ESNET-NORDUNET_15039_2", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1273}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.2021", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET WIX   #NORDU_TO_WIX_2021 | NORDU-to-WIX 2021", "circuits": [{"id": 661399, "name": "NORDU_TO_WIX_2021", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1274}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.2023", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER NORDUNET #NORDUNET-AP1 | ASN2603 |", "circuits": [{"id": 661366, "name": "NORDUNET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1275}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.2031", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon_GEANTOpen_ESnet-NORDUNET_15039_3 |", "circuits": [{"id": 661327, "name": "LON-LON_GEANTOPEN_ESNET-NORDUNET_15039_3", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1276}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.2033", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET  #lon-lon_GEANTOPEN_NORDUNET-WACREN_20041 |", "circuits": [{"id": 705942, "name": "LON-LON_GEANTOPEN_NORDUNET-WACREN_20041", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 982}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3003", "bundle": [], "bundle-parents": [], "description": "SRV_MDVPN CUSTOMER NORDUNET #NORDUnet-BGP-LU-CoC-1 | ", "circuits": [{"id": 661351, "name": "NORDUNET-BGP-LU-COC-1", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 1277}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3140", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET  #lon-lon_GEANTOpen_NORDUNET-NORDUNET_19074_1 |", "circuits": [{"id": 705918, "name": "LON-LON_GEANTOPEN_NORDUNET-NORDUNET_19074_1", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 763}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3151", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET  #lon-lon_GEANTOpen_NORDUNET-NORDUNET_19074_2 |", "circuits": [{"id": 705892, "name": "LON-LON_GEANTOPEN_NORDUNET-NORDUNET_19074_2", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 769}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3801", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET WIX   #NORDU_TO_WIX_TEST | Nordu-to-WIX test 1/12/2014", "circuits": [{"id": 661650, "name": "NORDU_TO_WIX_TEST", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1278}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3803", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET NETHERLIGHT  #NORDU_TO_NETHERLIGHT_TEST | Nordu-to-Netherlight test 1/12/2014", "circuits": [{"id": 661953, "name": "NORDU_TO_NETHERLIGHT_TEST", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1279}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3805", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET NETHERLIGHT  #NORDU_TO_WIX | Nordu-to-WIX test 1/12/2014", "circuits": [], "snmp-index": 1280}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3900", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER Nordunet #Nordunet_Laurea_ExpressRoute_Vlan3900", "circuits": [{"id": 706058, "name": "NORDUNET-LAUREA-EXPRESSROUTE-VLAN3900", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1180}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3902", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER NORDUNET #NORDUNET_JYV_ExpressRoute_VLAN3902 UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707076, "name": "NORDUNET-JYV-EXPRESSROUTE-VLAN3902", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1193}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3904", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER NORDUNET #Nordunet_OULU_ExpressRoute_Vlan3904 UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707082, "name": "NORDUNET-OULU-EXPRESSROUTE-VLAN3904", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1196}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3906", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER NORDUNET #Nordunet_Aalto_ExpressRoute_Vlan3906 UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706994, "name": "NORDUNET-AALTO-EXPRESSROUTE-VLAN3906", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1197}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3909", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER NORDUNET  #Nordunet_LTU_ExpressRoute_Vlan3909 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707121, "name": "NORDUNET_LTU_EXPRESSROUTE_VLAN3909", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1200}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3910", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER NORDUNET #Nordunet_HHU_ExpressRoute_Vlan3910 UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706560, "name": "NORDUNET-HHU-EXPRESSROUTE-VLAN3910", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1201}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.3912", "bundle": [], "bundle-parents": [], "description": "SRV_GCS CUSTOMER NORDUNET #Nordunet_TUNI_ExpressRoute_Vlan3912 UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707047, "name": "NORDUNET-TUNI-EXPRESSROUTE-VLAN3912", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1205}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.4001", "bundle": [], "bundle-parents": [], "description": "SRV_IAS PRIVATE NORDUNET #UK-NORDUNET-IX-2603 | ASN2603 | NORDUnet peer UK", "circuits": [{"id": 660550, "name": "UK-NORDUNET-IX-2603", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 1281}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/0/5.4005", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN CUSTOMER NORDUNET #NORDUNET_LON_IPv6_LHCONE | ASN2603", "circuits": [{"id": 661712, "name": "NORDUNET_LON_IPV6_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1282}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/1/2", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER_GEO ESnet #ESnet_GEO_UK_1 |  SRF9928165 | Lon_EEX_ESnet_OPEN_100G", "circuits": [{"id": 669055, "name": "ESNET_GEO_UK_1", "type": "GEANT OPEN PORT", "status": "operational"}], "snmp-index": 1265}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/1/2.104", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #UK_ESNET_ASN2603 | ASN2603 | Lon_EEX_ESnet_OPEN_100G", "circuits": [{"id": 661765, "name": "UK_ESNET_ASN2603", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1284}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/1/2.123", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon_GEANTOpen_ESnet-NORDUNET_15039_1 |", "circuits": [{"id": 661535, "name": "LON-LON_GEANTOPEN_ESNET-NORDUNET_15039_1", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1285}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/1/2.201", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER ESNET  #lon-lon_GEANTOpen_Esnet-TENET_180871 |", "circuits": [{"id": 661879, "name": "LON-LON_GEANTOPEN_ESNET-TENET_180871", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1009}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/1/2.411", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER ESNET  #lon-lon_GEANTOpen_Esnet-Esnet_170391 |", "circuits": [{"id": 709302, "name": "LON-LON_GEANTOPEN_ESNET-ESNET_170391", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1287}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/1/2.1488", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RENATER ESNET #lon-par_NCSA-LAAS_ESNET-RENATER_15057 |", "circuits": [{"id": 706056, "name": "LON-PAR_NCSA-LAAS_ESNET-RENATER_15057", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1288}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/1/2.2010", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon_GEANTOpen_Esnet-NORDUNET_15039_2  |", "circuits": [{"id": 660634, "name": "LON-LON_GEANTOPEN_ESNET-NORDUNET_15039_2", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1289}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/1/2.2031", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon_GEANTOpen_Esnet-NORDUNET_15039_3 |", "circuits": [{"id": 661327, "name": "LON-LON_GEANTOPEN_ESNET-NORDUNET_15039_3", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1290}, {"router": "mx1.lon.uk.geant.net", "name": "et-5/1/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS JBO (via JISC) DTN | 100G testing from Jodrell Bank DTN servers", "circuits": [], "snmp-index": 1266}, {"router": "mx1.lon.uk.geant.net", "name": "lt-7/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 |", "circuits": [], "snmp-index": 1132}, {"router": "mx1.lon.uk.geant.net", "name": "lt-7/0/0.12", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 | MDVPN CoC, GN PE to VPN-Proxy for BGP-LU", "circuits": [], "snmp-index": 1137}, {"router": "mx1.lon.uk.geant.net", "name": "lt-7/0/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #GEANT_IBGP_Peering-london| GN PE to VPN-Proxy for IBGP ", "circuits": [{"id": 710681, "name": "GEANT_IBGP_PEERING-LONDON", "type": "MD-VPN (INTERNAL)", "status": "operational"}], "snmp-index": 1138}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 652}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/1", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER JANET | ams-lon_LOFAR_JANET-NetherLight_10007 hairpin - to DTNX | OVERSUB-RISK-MPC3E", "circuits": [{"id": 674116, "name": "AMS-LON_LOFAR_JANET-NETHERLIGHT_10007", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 648}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER JANET | ams-lon_LOFAR_JANET-NetherLight_10007 hairpin - to DTNX | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 777}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/2", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER LON | #bru-lon_IX_Belnet-LON_20009 hairpin - to DTNX | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 671}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER LON | #bru-lon_IX_Belnet-LON_20009 hairpin - to DTNX | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 778}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/3", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER LON | bru-lon_IX_BELNET-LON_18002 hairpin - to DTNX | OVERSUB-RISK-MPC3E", "circuits": [{"id": 669180, "name": "BRU-LON_IX_BELNET-LON_18002", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 672}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER LON | bru-lon_IX_BELNET-LON_18002 - to DTNX | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 779}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 669}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/5", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER JISC BOD SRF0000001 | JISC BoD Edinburgh eMusic", "circuits": [], "snmp-index": 676}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/6", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER BELNET SRF9927563 | BELNET AP2", "circuits": [], "snmp-index": 673}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/7", "bundle": ["ae25"], "bundle-parents": [], "description": "PHY CUSTOMER_GEO ANKABUT #ANKABUT_GEO_UK_1 |  P_AE25 SRF20079 |", "circuits": [{"id": 678814, "name": "ANKABUT_GEO_UK_1", "type": "GEANT OPEN PORT", "status": "operational"}], "snmp-index": 674}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/8", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY PRIVATE TWITCH SRF9929705 P_AE13 |", "circuits": [], "snmp-index": 675}, {"router": "mx1.lon.uk.geant.net", "name": "xe-7/0/9", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY PRIVATE FACEBOOK SRF9934785 P_AE17 | FB ID: FA-1026202", "circuits": [], "snmp-index": 677}, {"router": "mx1.lon.uk.geant.net", "name": "et-9/0/2", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ESNET SRF9928017 | ASN293 | Lon-EEX_ESNET_100G", "circuits": [], "snmp-index": 1404}, {"router": "mx1.lon.uk.geant.net", "name": "et-9/0/2.104", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #UK_ESNET_vlan104 | ASN293 | ", "circuits": [{"id": 661606, "name": "UK_ESNET_VLAN104", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1407}, {"router": "mx1.lon.uk.geant.net", "name": "et-9/0/2.106", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #UK_ESNET_vlan106 | ASN293 | ", "circuits": [{"id": 661588, "name": "UK_ESNET_VLAN106", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1408}, {"router": "mx1.lon.uk.geant.net", "name": "et-9/0/2.111", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN RE_INTERCONNECT ESNET #ESNET_EEX_LON_LHCONE | ASN293", "circuits": [{"id": 661365, "name": "ESNET_LON_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1409}, {"router": "mx1.lon.uk.geant.net", "name": "et-9/0/5", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE6 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1403}, {"router": "mx1.lon.uk.geant.net", "name": "et-9/1/2", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE6 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1405}, {"router": "mx1.lon.uk.geant.net", "name": "et-9/1/5", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE6 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1406}, {"router": "mx1.lon.uk.geant.net", "name": "xe-10/0/0", "bundle": ["ae22"], "bundle-parents": [], "description": "PHY CUSTOMER_GEO WACREN #WACREN_GEO_UK_1 |  SRF43753 P_AE22 | ID: SN-20858588|", "circuits": [{"id": 669242, "name": "WACREN_GEO_UK_1", "type": "GEANT OPEN PORT", "status": "operational"}], "snmp-index": 904}, {"router": "mx1.lon.uk.geant.net", "name": "xe-10/0/1", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER SURFNET P_AE11 SRF9937135 | 4", "circuits": [], "snmp-index": 901}, {"router": "mx1.lon.uk.geant.net", "name": "xe-10/0/2", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY PRIVATE FACEBOOK P_AE18 SRF9934787 | FB ID: FC-26603", "circuits": [], "snmp-index": 902}, {"router": "mx1.lon.uk.geant.net", "name": "xe-10/0/3", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER SURFNET P_AE11 SRF9937285 | 5", "circuits": [], "snmp-index": 903}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 905}, {"router": "mx1.lon.uk.geant.net", "name": "xe-10/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 913}, {"router": "mx1.lon.uk.geant.net", "name": "xe-10/2/1", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | bru-lon", "circuits": [], "snmp-index": 910}, {"router": "mx1.lon.uk.geant.net", "name": "xe-10/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | SUSPECTED FAULTY SLOT", "circuits": [], "snmp-index": 911}, {"router": "mx1.lon.uk.geant.net", "name": "xe-10/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 912}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER_GEO Internet2 #Internet2_GEO_UK_1 |  SRF9928239 | ANA-100G to WIX", "circuits": [{"id": 661181, "name": "WIX_TO_NETHERLIGHT_TEST", "type": "GEANT PLUS", "status": "operational"}, {"id": 661472, "name": "LON_LON_CANARIE_CERN_15014", "type": "GEANT PLUS", "status": "operational"}, {"id": 661474, "name": "WIX_TO_NETHERLIGHT_TEST1", "type": "GEANT PLUS", "status": "operational"}, {"id": 661730, "name": "LON-LON_GEANTOPEN_NORDUNET-INTERNET2_17022", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}, {"id": 661767, "name": "LON-LON_GEANTOPEN_NETHERLIGHT-QNREN_15032", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 914}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.90", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SWITCH INTERNET2 #par_lon-INTERNET2-SWITCH_19117 |", "circuits": [{"id": 705897, "name": "PAR_LON-INTERNET2-SWITCH_19117", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 653}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.220", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 TENET #lon-lon_GEANTOPEN_INTERNET2-TENET_19004 |", "circuits": [{"id": 661301, "name": "LON-LON_GEANTOPEN_INTERNET2-TENET_19004", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1425}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.498", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER EUMETSAT #EUMET-JEUNO-LON-CLPK-16027 | EUMETSAT 5G link to NOAA College Park", "circuits": [{"id": 661180, "name": "EUMET-JEUNO-LON-CLPK-16027", "type": "GEANT IP", "status": "operational"}], "snmp-index": 768}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.500", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER INTERNET2 #INTERNET2_WIXRTT_TEST | TEST VLAN FOR WIX RTT ", "circuits": [{"id": 677839, "name": "INTERNET2_WIXRTT_TEST", "type": "GEANT IP", "status": "operational"}], "snmp-index": 942}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.524", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER CANARIE QNREN #lon-lon_GEANTOpen_CANARIE-QNREN_15024 |", "circuits": [{"id": 661996, "name": "LON-LON_GEANTOPEN_CANARIE-QNREN_15024", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 997}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.612", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT CLARA #UK_CLARA_vlan612 | ASN27750 | ", "circuits": [{"id": 661443, "name": "UK_CLARA_VLAN612", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1195}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.700", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 JANET #lon-lon_SYNGENTA_JANET-INTERNET2_17052 |", "circuits": [{"id": 705922, "name": "LON-LON_SYNGENTA_JANET-INTERNET2_17052", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1234}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.902", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #lon-lon_MISC_GEANT-INTERNET2_9940169 |", "circuits": [{"id": 678922, "name": "LON-LON_MISC_GEANT-INTERNET2_9940169", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1243}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.2016", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN RE_INTERCONNECT CLARA #REDCLARA_LON_LHCONE | ASN27750", "circuits": [{"id": 678224, "name": "REDCLARA_LON_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 989}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.2021", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET WIX   #NORDU_TO_WIX_2021 | NORDU-to-WIX 2021", "circuits": [{"id": 661399, "name": "NORDU_TO_WIX_2021", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 952}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.2050", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 NETHERLIGHT #lon-lon_GEANTOpen_INTERNET2-NETHERLIGHT_18073 |", "circuits": [{"id": 661229, "name": "LON-LON_GEANTOPEN_INTERNET2-NETHERLIGHT_18073", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 941}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.2126", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER CERN CANARIE #lon_lon_Canarie_CERN_15014 |", "circuits": [{"id": 661472, "name": "LON_LON_CANARIE_CERN_15014", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 969}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.2128", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET INTERNET2 #lon-lon_GEANTOpen_NORDUNET-INTERNET2_17022 |", "circuits": [{"id": 661730, "name": "LON-LON_GEANTOPEN_NORDUNET-INTERNET2_17022", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1150}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.2210", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 HBKU #lon-lon_GEANTOPEN_HBKU-INTERNET2_190091 |", "circuits": [{"id": 661607, "name": "LON-LON_GEANTOPEN_HBKU-INTERNET2_190091", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1432}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.2779", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT WIX #lon-lon_GEANTOpen_Netherlight-WIX |", "circuits": [{"id": 707103, "name": "LON-LON_GEANTOPEN_NETHERLIGHT-WIX", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 999}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.3000", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #UK-INTERNET2-vlan3000 | ASN11537 | ", "circuits": [{"id": 661252, "name": "UK_INTERNET2_VLAN3000", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 973}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.3001", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT QNREN #lon-lon_GEANTOpen_Netherlight-QNREN_15032 |", "circuits": [{"id": 661767, "name": "LON-LON_GEANTOPEN_NETHERLIGHT-QNREN_15032", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1003}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.3801", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET WIX   #NORDU_TO_WIX_TEST | Nordu-to-WIX test 1/12/2014", "circuits": [{"id": 661650, "name": "NORDU_TO_WIX_TEST", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 917}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.3806", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT  #WIX_TO_NETHERLIGHT_TEST1 | WIX-to-Netherlight test 03/12/2014", "circuits": [{"id": 661474, "name": "WIX_TO_NETHERLIGHT_TEST1", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 919}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.3807", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT  #WIX_TO_NETHERLIGHT_TEST2| WIX-to-Netherlight test 03/12/2014", "circuits": [{"id": 661462, "name": "WIX_TO_NETHERLIGHT_TEST2", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 920}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.3810", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT  #WIX_TO_NETHERLIGHT_TEST3 | WIX-to-Netherlight test 03/12/2014", "circuits": [{"id": 661534, "name": "WIX_TO_NETHERLIGHT_TEST3", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 948}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.3880", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT  #WIX_TO_NETHERLIGHT_TEST | WIX-to-Netherlight test 02/12/2014", "circuits": [{"id": 661181, "name": "WIX_TO_NETHERLIGHT_TEST", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 921}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.4020", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT WIX #lon-lon_GEANTOpen_Internet2-Netherlight_15034 |", "circuits": [{"id": 706967, "name": "LON-LON_GEANTOPEN_INTERNET2-NETHERLIGHT_15034", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1010}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.4040", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN RE_INTERCONNECT CANARIE #CANARIE_LON_LHCONE | ASN6509", "circuits": [{"id": 661711, "name": "CANARIE_LON_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1051}, {"router": "mx1.lon.uk.geant.net", "name": "et-10/3/0.4050", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT CANARIE #UK_CANARIE | ASN6509 | MANLAN Vlan:4050 ", "circuits": [{"id": 661410, "name": "UK_CANARIE", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1052}, {"router": "mx1.lon.uk.geant.net", "name": "et-11/0/2", "bundle": ["ae20"], "bundle-parents": [], "description": "PHY PUBLIC LINX AE_20 SRF9948916 | LINX port: edge1-tch-et-5/1/0", "circuits": [], "snmp-index": 1652}, {"router": "mx1.lon.uk.geant.net", "name": "et-11/0/5", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1653}, {"router": "mx1.lon.uk.geant.net", "name": "et-11/1/2", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1654}, {"router": "mx1.lon.uk.geant.net", "name": "et-11/1/5", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1655}, {"router": "mx1.lon.uk.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-3/1/0", "xe-10/2/1"], "description": "LAG INFRASTRUCTURE BACKBONE BRU SRF0000001 | bru-lon", "circuits": [], "snmp-index": 591}, {"router": "mx1.lon.uk.geant.net", "name": "ae4.0", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-3/1/0", "xe-10/2/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRU-LON-IPTRUNK | BRU-LON |", "circuits": [{"id": 708729, "name": "BRU-LON-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 793}, {"router": "mx1.lon.uk.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-3/0/1", "xe-3/0/3", "xe-3/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE LIS SRF0000001 | lis-lon", "circuits": [], "snmp-index": 613}, {"router": "mx1.lon.uk.geant.net", "name": "ae5.0", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-3/0/1", "xe-3/0/3", "xe-3/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS_LON_IPTRUNK | LIS-LON |  ", "circuits": [{"id": 708723, "name": "LIS_LON_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 667}, {"router": "mx1.lon.uk.geant.net", "name": "ae6", "bundle": [], "bundle-parents": ["et-9/0/5", "et-9/1/2", "et-9/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE LON2 SRF0000001 | lon-lon2 | Coriant G30 300G", "circuits": [], "snmp-index": 614}, {"router": "mx1.lon.uk.geant.net", "name": "ae6.0", "bundle": [], "bundle-parents": ["et-9/0/5", "et-9/1/2", "et-9/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON_LON2_IPTRUNK | LON2-LON |Coriant G30 300G", "circuits": [{"id": 708777, "name": "LON_LON2_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1418}, {"router": "mx1.lon.uk.geant.net", "name": "ae7", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "LAG INFRASTRUCTURE BACKBONE DUB SRF0000001 | dub-lon", "circuits": [], "snmp-index": 703}, {"router": "mx1.lon.uk.geant.net", "name": "ae7.0", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #DUB-LON-IPTRUNK | DUB-LON |  ", "circuits": [{"id": 708711, "name": "DUB_LON_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 958}, {"router": "mx1.lon.uk.geant.net", "name": "ae8", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE AMS SRF0000001 | ams-lon | Coriant G30 100G", "circuits": [], "snmp-index": 704}, {"router": "mx1.lon.uk.geant.net", "name": "ae8.0", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS2-LON-IPTRUNK-100G | AMS-LON |Coriant G30 100G", "circuits": [{"id": 708739, "name": "AMS2-LON-IPTRUNK-100G", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1428}, {"router": "mx1.lon.uk.geant.net", "name": "ae9", "bundle": [], "bundle-parents": ["et-11/0/5", "et-11/1/2", "et-11/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE AMS SRF0000001 | ams-lon | Coriant G30 300G", "circuits": [], "snmp-index": 705}, {"router": "mx1.lon.uk.geant.net", "name": "ae9.0", "bundle": [], "bundle-parents": ["et-11/0/5", "et-11/1/2", "et-11/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-LON-IPTRUNK_300G | AMS-LON |Coriant G30 300G", "circuits": [{"id": 708724, "name": "AMS-LON-IPTRUNK-300G", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1675}, {"router": "mx1.lon.uk.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["et-4/1/5", "et-5/0/2"], "description": "LAG CUSTOMER JISC SRF9923031 |", "circuits": [], "snmp-index": 706}, {"router": "mx1.lon.uk.geant.net", "name": "ae10.0", "bundle": [], "bundle-parents": ["et-4/1/5", "et-5/0/2"], "description": "SRV_GLOBAL CUSTOMER JISC #JISC-AP1 | ASN786 |", "circuits": [{"id": 661264, "name": "JISC-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 770}, {"router": "mx1.lon.uk.geant.net", "name": "ae10.310", "bundle": [], "bundle-parents": ["et-4/1/5", "et-5/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER JISC SWITCH #gen-lon_SYNGENTA_SWITCH-JANET_17041 |", "circuits": [{"id": 705461, "name": "GEN-LON_SYNGENTA_SWITCH-JANET_17041", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1217}, {"router": "mx1.lon.uk.geant.net", "name": "ae10.333", "bundle": [], "bundle-parents": ["et-4/1/5", "et-5/0/2"], "description": "SRV_IAS CUSTOMER JISC #JANET_AP1_IAS IASPS | ASN786 ", "circuits": [{"id": 661497, "name": "JANET_AP1_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 781}, {"router": "mx1.lon.uk.geant.net", "name": "ae10.667", "bundle": [], "bundle-parents": ["et-4/1/5", "et-5/0/2"], "description": "SRV_CLS CUSTOMER JISC #JISC_AP1_CLS|ASN786 | ", "circuits": [{"id": 660392, "name": "JISC_AP1_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1212}, {"router": "mx1.lon.uk.geant.net", "name": "ae10.700", "bundle": [], "bundle-parents": ["et-4/1/5", "et-5/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER JISC INTERNET2 #lon-lon_SYNGENTA_JANET-INTERNET2_17052 |", "circuits": [{"id": 705922, "name": "LON-LON_SYNGENTA_JANET-INTERNET2_17052", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1233}, {"router": "mx1.lon.uk.geant.net", "name": "ae10.930", "bundle": [], "bundle-parents": ["et-4/1/5", "et-5/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER JISC REDIRIS #lon-mar_GOTO_REDIRIS-JISC_16018 |", "circuits": [{"id": 708362, "name": "LON-MAR_GOTO_REDIRIS-JISC_16018", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1095}, {"router": "mx1.lon.uk.geant.net", "name": "ae10.2030", "bundle": [], "bundle-parents": ["et-4/1/5", "et-5/0/2"], "description": "SRV_L3VPN CUSTOMER JISC #JISC_LON_LHCONE | ASN786", "circuits": [{"id": 661732, "name": "JISC_LON_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 967}, {"router": "mx1.lon.uk.geant.net", "name": "ae10.3015", "bundle": [], "bundle-parents": ["et-4/1/5", "et-5/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER JISC JISC #dub-lon_NRENBBEXT_JANET_13015 | backup for niran", "circuits": [{"id": 707050, "name": "DUB-LON_NRENBBEXT_JANET_13015", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 733}, {"router": "mx1.lon.uk.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["xe-3/1/2", "xe-3/1/3", "xe-3/1/4", "xe-10/0/1", "xe-10/0/3"], "description": "LAG CUSTOMER SURFNET SRF9926279 | via NORDUNET CBF", "circuits": [], "snmp-index": 707}, {"router": "mx1.lon.uk.geant.net", "name": "ae11.333", "bundle": [], "bundle-parents": ["xe-3/1/2", "xe-3/1/3", "xe-3/1/4", "xe-10/0/1", "xe-10/0/3"], "description": "SRV_IAS CUSTOMER SURFNET #SURFNET_AP2_IAS IASPS | ASN1103 | ", "circuits": [{"id": 660399, "name": "SURFNET_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 860}, {"router": "mx1.lon.uk.geant.net", "name": "ae11.667", "bundle": [], "bundle-parents": ["xe-3/1/2", "xe-3/1/3", "xe-3/1/4", "xe-10/0/1", "xe-10/0/3"], "description": "SRV_CLS CUSTOMER SURFNET #SURFNET_AP2_CLS|ASN1103 | ", "circuits": [{"id": 661280, "name": "SURFNET_AP2_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1249}, {"router": "mx1.lon.uk.geant.net", "name": "ae11.1103", "bundle": [], "bundle-parents": ["xe-3/1/2", "xe-3/1/3", "xe-3/1/4", "xe-10/0/1", "xe-10/0/3"], "description": "SRV_GLOBAL CUSTOMER SURFNET #SURFNET-AP2 | ASN1103 |", "circuits": [{"id": 660540, "name": "SURFNET-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 859}, {"router": "mx1.lon.uk.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "LAG RE_INTERCONNECT CAE1 SRF19005", "circuits": [], "snmp-index": 1705}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.1002", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET TEIN  #lon-lon_GEANTOpen_NORDUNET-TEIN_17026  |", "circuits": [{"id": 705906, "name": "LON-LON_GEANTOPEN_NORDUNET-TEIN_17026", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 579}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.2260", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINGAREN #AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19103-VL2260 |", "circuits": [{"id": 706922, "name": "AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19103-VL2260", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 572}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.2361", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINGAREN #AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19120-VL2361 |", "circuits": [{"id": 707104, "name": "AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19120-VL2361", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 640}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.3100", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER SURFNET AARNET #lon_lon-SURFNET-AARNET_19097 |", "circuits": [{"id": 705937, "name": "LON_LON-SURFNET-AARNET_19097", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 933}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.3101", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_GLOBAL RE_INTERCONNECT AARNET #UK_AARNET | ASN7575 | CAE1-WL065785-VL3101 ", "circuits": [{"id": 661460, "name": "UK_AARNET", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 666}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.3102", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_L3VPN RE_INTERCONNECT AARNET #AARNET_LON_LHCONE | ASN7575", "circuits": [{"id": 661897, "name": "AARNET_LON_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 682}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.3104", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER AARNET SINGAREN  #lon-lon_GEANTOpen_AARNET-SINGAREN_CAE1_20044_VL3104 |", "circuits": [{"id": 705943, "name": "LON-LON_GEANTOPEN_AARNET-SINGAREN_CAE1_20044_VL3104", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 990}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.3140", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET NORDUNET #lon-lon_GEANTOpen_NORDUNET-NORDUNET_19074_1 |", "circuits": [{"id": 705918, "name": "LON-LON_GEANTOPEN_NORDUNET-NORDUNET_19074_1", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 760}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.3151", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET NORDUNET #lon-lon_GEANTOpen_NORDUNET-NORDUNET_19074_2", "circuits": [{"id": 705892, "name": "LON-LON_GEANTOPEN_NORDUNET-NORDUNET_19074_2", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 758}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.3160", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_GLOBAL RE_INTERCONNECT SINGAREN #UK-CAE1-SINGAREN | ASN23855 | CAE1-WL065785-VL3160", "circuits": [{"id": 661924, "name": "UK-CAE1-SINGAREN", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1709}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.3179", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER SINGAREN SINGAREN #lon-lon_GEANT2_SingAREN-SingAREN_17085 |", "circuits": [{"id": 705900, "name": "LON-LON_GEANT2_SINGAREN-SINGAREN_1708", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 581}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.3200", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_L3VPN RE_INTERCONNECT TEIN #TEIN_LON_LHCONE | ASN24490", "circuits": [{"id": 661919, "name": "TEIN_LON_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 569}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.3202", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_GLOBAL RE_INTERCONNECT TEIN #UK_TEIN | ASN24490 | Singapore ", "circuits": [{"id": 661949, "name": "UK_TEIN", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 575}, {"router": "mx1.lon.uk.geant.net", "name": "ae12.3220", "bundle": [], "bundle-parents": ["et-2/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER SINGAREN PSNC #lon-poz_GEANTOpen_SINGAREN_CAE1_19113_VL3220-PSNC |", "circuits": [{"id": 707007, "name": "LON-POZ_GEANTOPEN_SINGAREN_CAE1_19113_VL3220-PSNC", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 624}, {"router": "mx1.lon.uk.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["xe-7/0/8"], "description": "LAG PRIVATE TWITCH SRF9933135", "circuits": [], "snmp-index": 709}, {"router": "mx1.lon.uk.geant.net", "name": "ae13.0", "bundle": [], "bundle-parents": ["xe-7/0/8"], "description": "SRV_IAS PRIVATE TWITCH #TWITCH_46489_LON | ASN46489", "circuits": [{"id": 708159, "name": "TWITCH_46489_LON", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 1061}, {"router": "mx1.lon.uk.geant.net", "name": "ae16", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "LAG CUSTOMER BELNET SRF9927563 | BELNET AP2", "circuits": [], "snmp-index": 712}, {"router": "mx1.lon.uk.geant.net", "name": "ae16.0", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "SRV_GLOBAL CUSTOMER BELNET #BELNET-AP2 | ASN2611 |", "circuits": [{"id": 661672, "name": "BELNET-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 589}, {"router": "mx1.lon.uk.geant.net", "name": "ae16.333", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "SRV_IAS CUSTOMER BELNET #BELNET_AP2_IAS IASGWS | ASN2611 ", "circuits": [{"id": 673674, "name": "BELNET_AP2_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 867}, {"router": "mx1.lon.uk.geant.net", "name": "ae16.4080", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "SRV_GCS CUSTOMER BELNET  #Belnet_ARPGAN_ExpressRoute_VLAN4080 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707139, "name": "BELNET_ARPGAN_EXPRESSROUTE_VLAN4080", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 647}, {"router": "mx1.lon.uk.geant.net", "name": "ae16.4081", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "SRV_GCS CUSTOMER BELNET  #Belnet_ARTEV_ExpressRoute_VLAN4081 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707120, "name": "BELNET_ARTEV_EXPRESSROUTE_VLAN4081", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 650}, {"router": "mx1.lon.uk.geant.net", "name": "ae16.4082", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "SRV_GCS CUSTOMER BELNET  #Belnet_ZWEV_ExpressRoute_VLAN4082 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707140, "name": "BELNET_ZWEV_EXPRESSROUTE_VLAN4082", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 656}, {"router": "mx1.lon.uk.geant.net", "name": "ae16.4083", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "SRV_GCS CUSTOMER BELNET MICROSOFT | #BELNET_MICROSOFT_ExpressRoute_VLAN_4083 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 708990, "name": "BELNET_STADKORTRIJK_EXPRESSROUTE_VLAN_4083", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 962}, {"router": "mx1.lon.uk.geant.net", "name": "ae16.4090", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "SRV_GCS CUSTOMER BELNET  #Belnet_fgov_ExpressRoute_Vlan4090 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707128, "name": "BELNET_FGOV_EXPRESSROUTE_VLAN4090", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1182}, {"router": "mx1.lon.uk.geant.net", "name": "ae16.4091", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "SRV_GCS CUSTOMER BELNET  #BELNET_ICT_ExpressRoute_Vlan4091 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707122, "name": "BELNET_ICT_EXPRESSROUTE_VLAN4091", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1184}, {"router": "mx1.lon.uk.geant.net", "name": "ae16.4092", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "SRV_GCS CUSTOMER BELNET  #Belnet_NCCN_ExpressRoute_Vlan4092 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707127, "name": "BELNET_NCCN_EXPRESSROUTE_VLAN4092", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1214}, {"router": "mx1.lon.uk.geant.net", "name": "ae16.4093", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "SRV_GCS CUSTOMER BELNET  #Belnet_Premier_ExpressRoute_VLAN4093 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706557, "name": "BELNET_PREMIER_EXPRESSROUTE_VLAN4093", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1254}, {"router": "mx1.lon.uk.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["xe-7/0/9"], "description": "LAG PRIVATE FACEBOOK SRF9935089", "circuits": [], "snmp-index": 713}, {"router": "mx1.lon.uk.geant.net", "name": "ae17.0", "bundle": [], "bundle-parents": ["xe-7/0/9"], "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK_32934_LON_FA-1026202 | ASN32934", "circuits": [{"id": 708275, "name": "FACEBOOK_32934_LON_FA-1026202", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 1041}, {"router": "mx1.lon.uk.geant.net", "name": "ae18", "bundle": [], "bundle-parents": ["xe-10/0/2"], "description": "LAG PRIVATE FACEBOOK SRF9935091", "circuits": [], "snmp-index": 714}, {"router": "mx1.lon.uk.geant.net", "name": "ae18.0", "bundle": [], "bundle-parents": ["xe-10/0/2"], "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK_32934_LON_FC-26603 | ASN32934", "circuits": [{"id": 708242, "name": "FACEBOOK_32934_LON_FC-26603", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 1042}, {"router": "mx1.lon.uk.geant.net", "name": "ae20", "bundle": [], "bundle-parents": ["et-11/0/2"], "description": "LAG PUBLIC LINX SRF9929379 |", "circuits": [], "snmp-index": 716}, {"router": "mx1.lon.uk.geant.net", "name": "ae20.0", "bundle": [], "bundle-parents": ["et-11/0/2"], "description": "SRV_IAS PUBLIC LINX #IX_Peerings_in_LINX |", "circuits": [{"id": 708212, "name": "IX_PEERINGS_IN_LINX", "type": "IP PEERING - NON R&E (PUBLIC)", "status": "operational"}], "snmp-index": 1019}, {"router": "mx1.lon.uk.geant.net", "name": "ae21", "bundle": [], "bundle-parents": ["xe-1/2/0", "xe-1/2/1", "xe-1/2/2"], "description": "LAG CUSTOMER IUCC SRF9926387 | IUCC-AP1-LAG", "circuits": [], "snmp-index": 717}, {"router": "mx1.lon.uk.geant.net", "name": "ae21.100", "bundle": [], "bundle-parents": ["xe-1/2/0", "xe-1/2/1", "xe-1/2/2"], "description": "SRV_GLOBAL CUSTOMER IUCC #IUCC-AP1 | ASN378 | ", "circuits": [{"id": 661214, "name": "IUCC-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1092}, {"router": "mx1.lon.uk.geant.net", "name": "ae21.333", "bundle": [], "bundle-parents": ["xe-1/2/0", "xe-1/2/1", "xe-1/2/2"], "description": "SRV_IAS CUSTOMER IUCC #IUCC-AP1-IAS IASGWS | ASN378 |", "circuits": [{"id": 661500, "name": "IUCC-AP1-IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 654}, {"router": "mx1.lon.uk.geant.net", "name": "ae21.667", "bundle": [], "bundle-parents": ["xe-1/2/0", "xe-1/2/1", "xe-1/2/2"], "description": "SRV_CLS CUSTOMER IUCC #IUCC-AP1-CLS | ASN378 | ", "circuits": [{"id": 661931, "name": "IUCC-AP1-CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 623}, {"router": "mx1.lon.uk.geant.net", "name": "ae22", "bundle": [], "bundle-parents": ["xe-10/0/0"], "description": "LAG RE_INTERCONNECT WACREN SRF18082 |", "circuits": [], "snmp-index": 718}, {"router": "mx1.lon.uk.geant.net", "name": "ae22.100", "bundle": [], "bundle-parents": ["xe-10/0/0"], "description": "SRV_GLOBAL RE_INTERCONNECT WACREN #UK_WACREN | ASN37288 | ", "circuits": [{"id": 661300, "name": "UK_WACREN", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1336}, {"router": "mx1.lon.uk.geant.net", "name": "ae22.602", "bundle": [], "bundle-parents": ["xe-10/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER WACREN UBUNTUNET  #lon-lon-WACREN-UBUNTUNET_20103_ae22", "circuits": [{"id": 705895, "name": "LON-LON-UBUNTUNET-WACREN_20103", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1232}, {"router": "mx1.lon.uk.geant.net", "name": "ae22.1200", "bundle": [], "bundle-parents": ["xe-10/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER WACREN NEAAR #lon-lon2_GEANTOPEN_NEAAR-WACREN_190131 |", "circuits": [{"id": 709339, "name": "LON-LON-GEANTOPEN-NEA3R-WACREN-190131", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1441}, {"router": "mx1.lon.uk.geant.net", "name": "ae22.2033", "bundle": [], "bundle-parents": ["xe-10/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER WACREN NORDUNET #lon-lon_GEANTOPEN_NORDUNET-WACREN_20041 |", "circuits": [{"id": 705942, "name": "LON-LON_GEANTOPEN_NORDUNET-WACREN_20041", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 981}, {"router": "mx1.lon.uk.geant.net", "name": "ae23", "bundle": [], "bundle-parents": ["xe-3/2/0", "xe-3/2/1"], "description": "LAG INFRASTRUCTURE LAN | Uplink LAG to sw4.lon.uk.geant.net", "circuits": [], "snmp-index": 719}, {"router": "mx1.lon.uk.geant.net", "name": "ae23.10", "bundle": [], "bundle-parents": ["xe-3/2/0", "xe-3/2/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #InBand_management-sw4.lon.uk | In-band Management for sw4.lon.uk.geant.net", "circuits": [{"id": 661609, "name": "INBAND_MANAGEMENT-SW4.LON.UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 932}, {"router": "mx1.lon.uk.geant.net", "name": "ae23.46", "bundle": [], "bundle-parents": ["xe-3/2/0", "xe-3/2/1"], "description": "SRV_L2CIRCUIT CUSTOMER ASREN ASREN #lon-lon2_GEANTOpen_ASREN-ASREN_190491 |", "circuits": [{"id": 707023, "name": "LON-LON2_GEANTOPEN_ASREN-ASREN_190491", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 947}, {"router": "mx1.lon.uk.geant.net", "name": "ae24.0", "bundle": [], "bundle-parents": ["xe-3/1/7"], "description": "SRV_CLS PRIVATE ORACLE #UK-ORACLE_CLS|ASN31898 | ", "circuits": [{"id": 708307, "name": "UK-ORACLE_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 976}, {"router": "mx1.lon.uk.geant.net", "name": "ae25", "bundle": [], "bundle-parents": ["xe-7/0/7"], "description": "LAG RE_INTERCONNECT ANKABUT SRF20079", "circuits": [], "snmp-index": 617}, {"router": "mx1.lon.uk.geant.net", "name": "ae25.0", "bundle": [], "bundle-parents": ["xe-7/0/7"], "description": "SRV_GLOBAL RE_INTERCONNECT ANKABUT #UK_ANKABUT | ASN47862 |", "circuits": [{"id": 708290, "name": "UK_ANKABUT", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 633}, {"router": "mx1.lon.uk.geant.net", "name": "ae26", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "LAG RE_INTERCONNECT NEA3R SRF20098", "circuits": [], "snmp-index": 722}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.70", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER SWITCH INTERNET2 #gen-lon_MISC_SWITCH-INTERNET2_18045 |", "circuits": [{"id": 709298, "name": "GEN-LON_MISC_SWITCH-INTERNET2_18045", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 810}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.202", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #UK-INTERNET2-vlan202 | ASN11537 | ", "circuits": [{"id": 709338, "name": "UK_INTERNET2_VLAN202", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 836}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.203", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #UK_ESNET_vlan203 | ASN293 | ", "circuits": [{"id": 661433, "name": "UK_ESNET_VLAN203", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 854}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.204", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_GLOBAL RE_INTERCONNECT NISN #UK_NISN | ASN297 | ", "circuits": [{"id": 661526, "name": "UK_NISN", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 862}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.401", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT RE_INTERCONNECT CANARIE UBUNTUNET #lon-lon_MISC_UBUNTUNET-CANARIE_170351 |", "circuits": [{"id": 709304, "name": "LON-LON_MISC_UBUNTUNET-CANARIE_170351", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 797}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.402", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT RE_INTERCONNECT CANARIE UBUNTUNET #AMS-LON-MISC-UBUNTUNET-CANARIE-170352 |", "circuits": [{"id": 709295, "name": "AMS-LON-MISC-UBUNTUNET-CANARIE-170352", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 819}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.411", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER ESNET  #lon-lon_GEANTOpen_Esnet-Esnet_170391 |", "circuits": [{"id": 709302, "name": "LON-LON_GEANTOPEN_ESNET-ESNET_170391", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 803}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.420", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER NEA3R TENET #lon-lon_GEANTOPEN_NEA3R-TENET_18097 |", "circuits": [{"id": 709303, "name": "LON-LON_GEANTOPEN_NEAAR-TENET_18097", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 789}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.518", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT RE_INTERCONNECT NISN RENATER #lon-gen_CNES_NISN-RENATER |", "circuits": [{"id": 709299, "name": "LON-GEN_CNES_NISN-RENATER", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 811}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.519", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT RE_INTERCONNECT NISN RENATER #lon-par_CNES_NISN-RENATER |", "circuits": [{"id": 709305, "name": "LON-PAR_CNES_NISN-RENATER", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 826}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.611", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_GLOBAL RE_INTERCONNECT CLARA #UK_CLARA_vlan611 | ASN27750 | ", "circuits": [{"id": 709307, "name": "UK_CLARA_VLAN611", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 866}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.801", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT RE_INTERCONNECT INTERNET2 UBUNTUNET #lon-lon_MISC_UBUNTUNET-INTERNET2_170341 |", "circuits": [{"id": 709301, "name": "LON-LON-MISC-UBUNTUNET-INTERNET2-170341", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 804}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.802", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT RE_INTERCONNECT INTERNET2 UBUNTUNET #AMS-LON-MISC-UBUNTUNET-INTERNET2-170342 |", "circuits": [{"id": 709296, "name": "AMS-LON-MISC-UBUNTUNET-INTERNET2-170342", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 823}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.904", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #lon-lon2_MISC_GEANT-INTERNET2_9940525 |", "circuits": [{"id": 709300, "name": "LON-LON2_MISC_GEANT-INTERNET2_9940525", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 832}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.1200", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER NEA3R WACREN #lon-lon_GEANTOPEN_NEA3R-WACREN_190131 |", "circuits": [{"id": 709339, "name": "LON-LON-GEANTOPEN-NEA3R-WACREN-190131", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 805}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.2002", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L3VPN RE_INTERCONNECT INTERNET2 #INTERNET2_LON_LHCONE | ASN11537", "circuits": [{"id": 661750, "name": "INTERNET2_LON_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 869}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.2013", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L3VPN RE_INTERCONNECT ESNET #ESNET_NEA3R_LON_LHCONE | ASN293", "circuits": [{"id": 709643, "name": "ESNET_NEA3R_LON_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 877}, {"router": "mx1.lon.uk.geant.net", "name": "ae26.2110", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 HBKU #lon-par_GEANTOPEN_INTERNET2-HBKU_190092 |", "circuits": [{"id": 709340, "name": "LON-PAR_GEANTOPEN_INTERNET2-HBKU_190092", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 827}, {"router": "mx1.lon.uk.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-lon-uk-mgmt-vrf-vlan999|", "circuits": [], "snmp-index": 696}, {"router": "mx1.lon.uk.geant.net", "name": "xe-3/2/6.961", "bundle": [], "bundle-parents": [], "description": "SRV_MDVPN CUSTOMER JISC #JANET-GN-PRACE-1-VPN-Proxy-London-L3VPN | VPN-Proxy to NREN CE", "circuits": [{"id": 709655, "name": "JANET-GN-PRACE-1-VPN-PROXY-LONDON-L3VPN", "type": "MD-VPN (PROXY)", "status": "operational"}], "snmp-index": 1497}, {"router": "mx1.lon.uk.geant.net", "name": "lt-7/0/0.21", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF9938733 | VPN-Proxy to GEANT PE for BGP-LU peering", "circuits": [], "snmp-index": 1139}, {"router": "mx1.mar.fr.geant.net", "name": "xe-0/0/0", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY CUSTOMER MICROSOFT SRF19105 EXPRESSROUTE #1 | GEANT-MRS20-06GMR-CIS-1-PRI-11142019", "circuits": [], "snmp-index": 526}, {"router": "mx1.mar.fr.geant.net", "name": "xe-0/0/1", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY PUBLIC DE-CIX P_AE13 SRF9950963 | DE-CIX ID: : DXDB:PNI:10052  / edge01.mrs1, Port Te5/1/10", "circuits": [], "snmp-index": 527}, {"router": "mx1.mar.fr.geant.net", "name": "xe-0/1/0", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ARN SRF20032", "circuits": [], "snmp-index": 528}, {"router": "mx1.mar.fr.geant.net", "name": "xe-0/1/1", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | mx1-sw1 (ex3400)", "circuits": [], "snmp-index": 529}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | SW1.MAR.FR G0/5", "circuits": [], "snmp-index": 534}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/0.15", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #exfo-tester-mar-fr | EXFO tester", "circuits": [{"id": 661685, "name": "EXFO-TESTER-MAR-FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 865}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/0.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-mar-fr-idrac |perfSONAR iDRAC", "circuits": [{"id": 661464, "name": "PS-MAR-FR-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 622}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/0.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-mar-fr-management |perfSONAR MGMT", "circuits": [{"id": 661970, "name": "PS-MAR-FR-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 624}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/0.25", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #BACKUP_NODE_IDRAC_MAR_FR | SuperPOP Backup Node iDRAC", "circuits": [{"id": 661476, "name": "BACKUP_NODE_IDRAC_MAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 637}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP", "circuits": [{"id": 708311, "name": "PS-MAR-FR-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 535}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-mar-fr-owamp | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160810", "circuits": [{"id": 708311, "name": "PS-MAR-FR-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 625}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 536}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 537}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | reserved for Tunisian NREN", "circuits": [], "snmp-index": 538}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 539}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 540}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 541}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 542}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 543}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS AWTRIAL SRF0000001 | AWTRIAL CORSA MGMT ACCESS", "circuits": [], "snmp-index": 551}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 552}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 553}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 544}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 545}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 546}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 547}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 548}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 549}, {"router": "mx1.mar.fr.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 550}, {"router": "mx1.mar.fr.geant.net", "name": "lt-1/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 |", "circuits": [], "snmp-index": 652}, {"router": "mx1.mar.fr.geant.net", "name": "lt-1/0/0.12", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #BGP_LU_Peering-marseille| GN PE to VPN-Proxy for BGP-LU ", "circuits": [{"id": 710684, "name": "BGP_LU_PEERING-MARSEILLE", "type": "MD-VPN (INTERNAL)", "status": "operational"}], "snmp-index": 655}, {"router": "mx1.mar.fr.geant.net", "name": "lt-1/0/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #GEANT_IBGP_Peering-marseille| GN PE to VPN-Proxy for IBGP ", "circuits": [{"id": 710686, "name": "GEANT_IBGP_PEERING-MARSEILLE", "type": "MD-VPN (INTERNAL)", "status": "operational"}], "snmp-index": 657}, {"router": "mx1.mar.fr.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | connected to xe-1/0/1", "circuits": [], "snmp-index": 530}, {"router": "mx1.mar.fr.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | connected to xe-1/0/0", "circuits": [], "snmp-index": 531}, {"router": "mx1.mar.fr.geant.net", "name": "xe-1/1/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | mx1-sw1 (ex3400)", "circuits": [], "snmp-index": 533}, {"router": "mx1.mar.fr.geant.net", "name": "xe-1/1/1", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY CUSTOMER MICROSOFT SRF19105 EXPRESSROUTE #2 | GEANT-MRS20-06GMR-CIS-2-SEC-11142019", "circuits": [], "snmp-index": 532}, {"router": "mx1.mar.fr.geant.net", "name": "xe-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL", "circuits": [{"id": 708327, "name": "PS-MAR-FR-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 956}, {"router": "mx1.mar.fr.geant.net", "name": "xe-1/2/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-mar-fr-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160810", "circuits": [{"id": 708327, "name": "PS-MAR-FR-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 958}, {"router": "mx1.mar.fr.geant.net", "name": "xe-1/2/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS VEEAM SRF0000001 | R730xd port1", "circuits": [], "snmp-index": 957}, {"router": "mx1.mar.fr.geant.net", "name": "xe-1/3/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS VEEAM SRF0000001 | R730xd port2", "circuits": [], "snmp-index": 960}, {"router": "mx1.mar.fr.geant.net", "name": "xe-1/3/1", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY PUBLIC DE-CIX P_AE13 SRF9938865 | DE-CIX ID: : MRS01B005  / edge01.mrs1, Port Gi2/1/15", "circuits": [], "snmp-index": 961}, {"router": "mx1.mar.fr.geant.net", "name": "et-2/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001", "circuits": [], "snmp-index": 599}, {"router": "mx1.mar.fr.geant.net", "name": "et-3/0/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001", "circuits": [], "snmp-index": 610}, {"router": "mx1.mar.fr.geant.net", "name": "lt-3/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 891}, {"router": "mx1.mar.fr.geant.net", "name": "lt-3/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-mar-fr-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710698, "name": "BGPPEERING-MAR-FR-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 894}, {"router": "mx1.mar.fr.geant.net", "name": "lt-3/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #MAR-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 895}, {"router": "mx1.mar.fr.geant.net", "name": "et-4/0/0", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY CUSTOMER REDIRIS P_ae15 SRF15020", "circuits": [], "snmp-index": 912}, {"router": "mx1.mar.fr.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["et-3/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mar-mil2", "circuits": [], "snmp-index": 560}, {"router": "mx1.mar.fr.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["et-3/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAR_MIL2_IPTRUNK | MAR-MIL2 |  ", "circuits": [{"id": 708732, "name": "MAR_MIL2_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 611}, {"router": "mx1.mar.fr.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-2/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | gen-mar", "circuits": [], "snmp-index": 561}, {"router": "mx1.mar.fr.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-2/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN_MAR_IPTRUNK | GEN-MAR |  ", "circuits": [{"id": 708750, "name": "GEN_MAR_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 613}, {"router": "mx1.mar.fr.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-1/1/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx1-sw1 (ex3400)", "circuits": [], "snmp-index": 562}, {"router": "mx1.mar.fr.geant.net", "name": "ae2.103", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-1/1/0"], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #DCN_MANAGEMENT_MAR_FR | DCN MANAGEMENT ", "circuits": [{"id": 705626, "name": "DCN_MANAGEMENT_MAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 699}, {"router": "mx1.mar.fr.geant.net", "name": "ae2.998", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-1/1/0"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-mar-fr| SW1-EX3400 MANAGEMENT", "circuits": [{"id": 705623, "name": "EX3400-MANAGEMENT-MAR-FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 708}, {"router": "mx1.mar.fr.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-1/2/1", "xe-1/3/0"], "description": "LAG INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | VEEAM backup-2.mar.fr.geant.net", "circuits": [], "snmp-index": 570}, {"router": "mx1.mar.fr.geant.net", "name": "ae10.0", "bundle": [], "bundle-parents": ["xe-1/2/1", "xe-1/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #VEEAM_BACKUP_2_MAR_FR | VEEAM backup-2.mar.fr.geant.net", "circuits": [{"id": 708236, "name": "VEEAM_BACKUP_2_MAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 649}, {"router": "mx1.mar.fr.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-1/3/1"], "description": "LAG PUBLIC DE-CIX SRF9938247", "circuits": [], "snmp-index": 573}, {"router": "mx1.mar.fr.geant.net", "name": "ae13.100", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-1/3/1"], "description": "SRV_IAS PUBLIC DE-CIX #IX_Peerings_in_DE-CIX_mar |", "circuits": [{"id": 661980, "name": "IX_PEERINGS_IN_DE-CIX_MAR", "type": "IP PEERING - NON R&E (PUBLIC)", "status": "operational"}], "snmp-index": 632}, {"router": "mx1.mar.fr.geant.net", "name": "ae15", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "LAG CUSTOMER REDIRIS SRF9930051 |", "circuits": [], "snmp-index": 575}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.60", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_GLOBAL CUSTOMER EUMETSAT #EUMETSAT_BUCC_MonitoringVLAN60 | VLAN 60 MONITORING 53", "circuits": [{"id": 707135, "name": "EUMETSAT_BUCC_MONITORINGVLAN60", "type": "GEANT IP", "status": "operational"}], "snmp-index": 897}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.75", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_GLOBAL CUSTOMER EUMETSAT #EUMETSAT_BUCC_MonitoringVLAN75 | VLAN 75 MONITORING 68", "circuits": [{"id": 702124, "name": "EUMETSAT_BUCC_MONITORINGVLAN75", "type": "GEANT IP", "status": "operational"}], "snmp-index": 669}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.186", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_Fed4FIRE_BELNET-RedIRIS_14010 |", "circuits": [{"id": 708368, "name": "BRU-MAR_FED4FIRE_BELNET-REDIRIS_14010", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 696}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.187", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_Fed4FIRE_BELNET-RedIRIS_14011 |", "circuits": [{"id": 708356, "name": "BRU-MAR_FED4FIRE_BELNET-REDIRIS_14011", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 695}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.188", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_Fed4FIRE_BELNET-RedIRIS_14012 |", "circuits": [{"id": 708366, "name": "BRU-MAR_FED4FIRE_BELNET-REDIRIS_14012", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 694}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.189", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_Fed4FIRE_BELNET-RedIRIS_14013 |", "circuits": [{"id": 708364, "name": "BRU-MAR_FED4FIRE_BELNET-REDIRIS_14013", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 693}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.190", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_Fed4FIRE_BELNET-RedIRIS_14014 |", "circuits": [{"id": 708360, "name": "BRU-MAR_FED4FIRE_BELNET-REDIRIS_14014", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 692}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.196", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS JISC #lon-mar_OFELIA_JANET-RedIRIS_13013 | ", "circuits": [{"id": 708363, "name": "LON-MAD_OFELIA_JANET-REDIRIS_13013", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 691}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.197", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_OFELIA_BELnet-RedIRIS_14001 |", "circuits": [{"id": 708367, "name": "BRU-MAR_OFELIA_BELNET-REDIRIS_14001", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 690}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.281", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_GLOBAL CUSTOMER REDIRIS #REDIRIS_AP1 | ASN766 | ", "circuits": [{"id": 661939, "name": "REDIRIS_AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 614}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.333", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_IAS CUSTOMER REDIRIS #REDIRIS_AP1_IAS IASPS | ASN766 ", "circuits": [{"id": 661925, "name": "REDIRIS_AP1_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 656}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.409", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_GCS CUSTOMER REDIRIS #RedIRIS_USC_ExpressRoute_Vlan409 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 708369, "name": "REDIRIS-USC-EXPRESSROUTE-VLAN409", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 701}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.412", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS #RedIRIS_UCLM_ExpressRoute_Vlan412", "circuits": [{"id": 707138, "name": "REDIRIS_UCLM_EXPRESSROUTE_VLAN412", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 703}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.667", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_CLS CUSTOMER REDIRIS #REDIRIS_AP1_CLS|ASN766 | ", "circuits": [{"id": 661636, "name": "REDIRIS_AP1_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 866}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.766", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS GEANT #fra_mar-REDIRIS-RARE_20092 |", "circuits": [{"id": 708359, "name": "FRA_MAR-REDIRIS-RARE_20092", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 705}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.930", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS JISC #mar-lon_GOTO_REDIRIS-JANET_16018 |", "circuits": [{"id": 708362, "name": "LON-MAR_GOTO_REDIRIS-JISC_16018", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 948}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.931", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER DFN REDIRIS SRF21028 | #fra_mar-DFN-REDIRIS_21028", "circuits": [{"id": 709749, "name": "FRA_MAR-DFN-REDIRIS_21028", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 666}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.932", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_L3VPN CUSTOMER REDIRIS #REDIRIS_AP1_Confine | ASN766 | REDIRIS CONFINE IP VPN", "circuits": [{"id": 661342, "name": "REDIRIS_AP1_CONFINE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 674}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.2000", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_MDVPN CUSTOMER REDIRIS #RedIRIS_AP1_BGP_LU_CoC_1 | MD VPN CoC-REDIRIS - ", "circuits": [{"id": 661625, "name": "REDIRIS_AP1_BGP_LU_COC_1", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 663}, {"router": "mx1.mar.fr.geant.net", "name": "ae16", "bundle": [], "bundle-parents": ["xe-0/0/0"], "description": "LAG CUSTOMER MICROSOFT SRF19105 EXPRESSROUTE #1 | GEANT-MRS20-06GMR-CIS-1-PRI-11142019", "circuits": [], "snmp-index": 576}, {"router": "mx1.mar.fr.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["xe-1/1/1"], "description": "LAG CUSTOMER MICROSOFT SRF19105 EXPRESSROUTE #2 | GEANT-MRS20-06GMR-CIS-2-SEC-11142019", "circuits": [], "snmp-index": 577}, {"router": "mx1.mar.fr.geant.net", "name": "ae18", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "LAG RE_INTERCONNECT ARN SRF20032", "circuits": [], "snmp-index": 579}, {"router": "mx1.mar.fr.geant.net", "name": "ae18.100", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GLOBAL RE_INTERCONNECT ARN #FR_ARN_AP1 | ASN3208 |", "circuits": [{"id": 702140, "name": "FR_ARN_AP1", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 675}, {"router": "mx1.mar.fr.geant.net", "name": "ae18.333", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_IAS Customer ARN #FR_ARN_IAS IASGWS | ASN3208 |", "circuits": [{"id": 702139, "name": "FR_ARN_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 676}, {"router": "mx1.mar.fr.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 578}, {"router": "mx1.mar.fr.geant.net", "name": "lt-1/0/0.21", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF9927525 | VPN-Proxy to GEANT PE for BGP-LU peering", "circuits": [], "snmp-index": 658}, {"router": "mx1.mar.fr.geant.net", "name": "lt-1/0/0.31", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF??? | VPN-Proxy to GEANT PE for IBGP", "circuits": [], "snmp-index": 659}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.198", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_MDVPN CUSTOMER REDIRIS #RedIRIS-GN-XiFi-VPN-Proxy-Marseille-L3VPN | VPN-Proxy to NREN CE", "circuits": [], "snmp-index": 917}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.946", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_MDVPN CUSTOMER REDIRIS #RedIRIS-GN-PRACE-VPN-Proxy-Marseille-L3VPN | VPN-Proxy to NREN CE", "circuits": [{"id": 709654, "name": "REDIRIS-GN-PRACE-VPN-PROXY-MARSEILLE-L3VPN", "type": "MD-VPN (PROXY)", "status": "operational"}], "snmp-index": 947}, {"router": "mx1.mar.fr.geant.net", "name": "ae15.947", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_MDVPN CUSTOMER REDIRIS #RedIRIS-SUNET-SST-VPN-Proxy-Marseille-L2VPN | VPN-Proxy to NREN CE", "circuits": [], "snmp-index": 1009}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT |#GRE_Multicast_Tunnel_NOAA", "circuits": [{"id": 709007, "name": "EUMETSAT-GRE-NOAA", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 1073}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.1", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT | #GRE_Multicast_Tunnel_CBG-Lab", "circuits": [], "snmp-index": 1074}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.2", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT | #GRE_Multicast_Tunnel_NCI-CSIRO", "circuits": [{"id": 709005, "name": "EUMETSAT-GRE-NCI", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 752}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.3", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT | #GRE_Multicast_Tunnel_NSOAS", "circuits": [{"id": 709009, "name": "EUMETSAT-GRE-NSOAS", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 819}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.6", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT |#GRE_Multicast_Tunnel_ECMWF2", "circuits": [{"id": 708992, "name": "EUMETSAT-GRE-ECMWF_2", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 1244}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.10", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT |#GRE_Multicast_Tunnel_INPE", "circuits": [{"id": 708999, "name": "EUMETSAT-GRE-INPE", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 672}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.11", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT | #GRE_Multicast_Tunnel_ NMO", "circuits": [{"id": 709006, "name": "EUMETSAT-GRE-NMO", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 715}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.12", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT |#GRE_Multicast_Tunnel_KNMI", "circuits": [{"id": 709002, "name": "EUMETSAT-GRE-KNMI", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 703}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT 18052 | #GRE_Multicast_Tunnel_ECMWF", "circuits": [{"id": 708993, "name": "EUMETSAT-GRE-ECMWF_1", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 1277}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.14", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT 20042 | #GRE_Multicast_Tunnel_JPL", "circuits": [{"id": 709000, "name": "EUMETSAT-GRE-JPL", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 1282}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.15", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT | #GRE_Multicast_Tunnel_NOAA2", "circuits": [{"id": 709008, "name": "EUMETSAT-GRE-NOAA2", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 1333}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT | #GRE_Multicast_Tunnel_UKMO", "circuits": [{"id": 709010, "name": "EUMETSAT-GRE-UKMO", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 947}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.17", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT | #GRE_Multicast_Tunnel_IAMS", "circuits": [{"id": 708994, "name": "EUMETSAT-GRE-IAMS", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 949}, {"router": "mx1.fra.de.geant.net", "name": "gr-0/0/0.18", "bundle": [], "bundle-parents": [], "description": "SRV_TUN CUSTOMER EUMETSAT | #GRE_Multicast_Tunnel_IMPA", "circuits": [{"id": 708995, "name": "EUMETSAT-GRE-IMPA", "type": "EUMETSAT GRE", "status": "operational"}], "snmp-index": 1010}, {"router": "mx1.fra.de.geant.net", "name": "xe-0/0/0", "bundle": ["ae23"], "bundle-parents": [], "description": "PHY CUSTOMER GRENA P_AE23 SRF9937073 | Caucasus Online ID: WHS 8811502 \u00c3\u00a2\u00e2\u0082\u00ac\u00e2\u0080\u009c FTTP 8827450", "circuits": [], "snmp-index": 602}, {"router": "mx1.fra.de.geant.net", "name": "xe-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 603}, {"router": "mx1.fra.de.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 604}, {"router": "mx1.fra.de.geant.net", "name": "xe-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 605}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | QFX1 C0 MGMT", "circuits": [], "snmp-index": 606}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915883 | FRA01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 607}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915887 | DCN", "circuits": [], "snmp-index": 608}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/2.132", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #dna-fra-de-esxi| Infinera DNA ESXI", "circuits": [{"id": 663111, "name": "DNA-FRA-DE-ESXI", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 857}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | ne-esxi-prod-fra-1-idrac", "circuits": [{"id": 708154, "name": "NE_ESXI_FRA_DE_IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 609}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE_ESXI_FRA_DE_IDRAC | ne-esxi-prod-fra-1-idrac", "circuits": [{"id": 708154, "name": "NE_ESXI_FRA_DE_IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1330}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE |Connected to DFN ODF Port 1", "circuits": [], "snmp-index": 610}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | CISCO SW G0/3", "circuits": [{"id": 662959, "name": "RARE_P4_B1-FRA", "type": "L2SERVICES", "status": "operational"}], "snmp-index": 612}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/5.25", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FRANKFURT_DRAC | SuperPOP DRAC", "circuits": [{"id": 663209, "name": "FRANKFURT_DRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 829}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/5.102", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #FRA_Groove_1_Management | FRA Groove 1 Direct Management", "circuits": [{"id": 663127, "name": "FRA_GROOVE_1_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1370}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/5.103", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #FRA_Groove_1 | FRA Groove 1  ", "circuits": [{"id": 663177, "name": "FRA_GROOVE_1", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1371}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/5.201", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #FRA_Groove_2 | FRA Groove 2  ", "circuits": [{"id": 663071, "name": "FRA_GROOVE_2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1372}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/5.202", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #FRA_Groove_2_Management | FRA Groove 2 Direct Management", "circuits": [{"id": 663010, "name": "FRA_GROOVE_2_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1373}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/5.301", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #FRA_Groove_3 | FRA Groove 3  ", "circuits": [{"id": 663003, "name": "FRA_GROOVE_3", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1449}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/5.302", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #FRA_Groove_3_Management | FRA Groove 3 Direct Management", "circuits": [{"id": 662948, "name": "FRA_GROOVE_3_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1450}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/5.991", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access #FRA_Groove | FRA Groove G30", "circuits": [{"id": 707210, "name": "FRA_GROOVE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 956}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/5.3005", "bundle": [], "bundle-parents": [], "description": "SRV_VPLS INFRASTRUCTURE VLAN3005 #RARE_P4_B1-FRA | RARE P4 b1.fra MGMT CONTACT: mian.usman@geant.org IMPLEMENTED: 20200116", "circuits": [{"id": 662959, "name": "RARE_P4_B1-FRA", "type": "L2SERVICES", "status": "operational"}], "snmp-index": 1236}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SPLUNK SRF0000001 | Splunk2 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20160917", "circuits": [], "snmp-index": 611}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SPLUNK SRF0000001 | Splunk2 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20160917", "circuits": [], "snmp-index": 613}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE |reserved for EAP Cau", "circuits": [], "snmp-index": 614}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS A10_DDOS_SCRUBBING SRF0000001 | A10 Management A10 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [{"id": 708200, "name": "A10_DDOS_SCRUBBING_FRA", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 615}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/2/9.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #A10_DDOS_SCRUBBING_FRA | A10 Management A10 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [{"id": 708200, "name": "A10_DDOS_SCRUBBING_FRA", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1183}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | ne-esxi-prod-fra-1 vmnic0", "circuits": [], "snmp-index": 616}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/0.10", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE-ESXI-FRA-DE-TNMS-VLAN10 | ne-esxi-prod-fra-1 VMNetwork", "circuits": [{"id": 679174, "name": "NE-ESXI-FRA-DE-TNMS-VLAN10", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1328}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/0.11", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE-ESXI-FRA-DE-TNMS-VLAN11 | ne-esxi-prod-fra-1 TNMS-VMs Portgroup", "circuits": [{"id": 679313, "name": "NE-ESXI-FRA-DE-TNMS-VLAN11", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1331}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/0.991", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access PARIS #FRA_TNMS | Internal network", "circuits": [{"id": 679310, "name": "FRA_TNMS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1332}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 617}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 618}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER DFN SRF9914771 | MD-VPN", "circuits": [], "snmp-index": 619}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/3.278", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER DFN RENATER #fra-par_MPVPN_DFN-RENATER_13003 |", "circuits": [{"id": 708358, "name": "FRA-PAR_MPVPN_DFN-RENATER_13003", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 821}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER DFN SRF9913011 | bud-fra_PRACE_DFN-NIIF_13011", "circuits": [], "snmp-index": 620}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 621}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/6", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY CUSTOMER CAREN P_AE14 SRF0000001 |", "circuits": [], "snmp-index": 622}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE |", "circuits": [], "snmp-index": 623}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE |", "circuits": [], "snmp-index": 624}, {"router": "mx1.fra.de.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE |", "circuits": [], "snmp-index": 625}, {"router": "mx1.fra.de.geant.net", "name": "gr-1/0/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_Interconnect IRANET #DE_IRANET | ASN6736", "circuits": [], "snmp-index": 1120}, {"router": "mx1.fra.de.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 564}, {"router": "mx1.fra.de.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 565}, {"router": "mx1.fra.de.geant.net", "name": "lt-1/1/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN #Logical_Tunnel_Device_Frankfurt_FPC1", "circuits": [], "snmp-index": 1134}, {"router": "mx1.fra.de.geant.net", "name": "lt-1/1/0.12", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 | MDVPN CoC, GN PE to VPN-Proxy for BGP-LU", "circuits": [], "snmp-index": 1137}, {"router": "mx1.fra.de.geant.net", "name": "lt-1/1/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #GEANT_IBGP_Peering-frankfurt| GN PE to VPN-Proxy for IBGP ", "circuits": [{"id": 710690, "name": "GEANT_IBGP_PEERING-FRANKFURT", "type": "MD-VPN (INTERNAL)", "status": "operational"}], "snmp-index": 1138}, {"router": "mx1.fra.de.geant.net", "name": "xe-1/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 566}, {"router": "mx1.fra.de.geant.net", "name": "xe-1/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 567}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP3 OWAMP (LHCone) CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160607", "circuits": [{"id": 708172, "name": "PS-FRA-DE-PSMP3-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 639}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-psmp3-owamp | PSMP3 OWAMP (LHCone) CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160607", "circuits": [{"id": 708172, "name": "PS-FRA-DE-PSMP3-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 731}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | QFX2 C0 MGMT", "circuits": [], "snmp-index": 640}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 641}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS FLOWMON_DDOS SRF0000001 | FlowMon iDRAC CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170910", "circuits": [{"id": 708315, "name": "FLOWMON_DDOS_FRA_DE_IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 642}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON_DDOS_FRA_DE_IDRAC | FlowMon iDRAC CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170910", "circuits": [{"id": 708315, "name": "FLOWMON_DDOS_FRA_DE_IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1184}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 643}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 646}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS FLOWMON_DDOS SRF0000001 | FlowMon Management CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170910", "circuits": [{"id": 708271, "name": "FLOWMON_DDOS_FRA_DE_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 647}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/6.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON_DDOS_FRA_DE_MANAGEMENT | FlowMon Management CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170910", "circuits": [{"id": 708271, "name": "FLOWMON_DDOS_FRA_DE_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1185}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS FLOWMON_DDOS SRF0000001 | FlowMon NetFlow_Interface CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170910", "circuits": [{"id": 708287, "name": "FLOWMON_DDOS_FRA_DE_NETFLOW", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 648}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/7.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON_DDOS_FRA_DE_NETFLOW | FlowMon NetFlow_Interface CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170910", "circuits": [{"id": 708287, "name": "FLOWMON_DDOS_FRA_DE_NETFLOW", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1186}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN | fra de POP LAN", "circuits": [], "snmp-index": 649}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/8.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-fra-de-DRAC | HADES DRAC", "circuits": [{"id": 662983, "name": "HADES-FRA-DE-DRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 901}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/8.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-psmp1-2 | PSMP1&2 MGMT CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20180809", "circuits": [{"id": 663241, "name": "PS-FRA-DE-PSMP1-2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 902}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/8.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-fra-de-idrac |perfSONAR IDRAC", "circuits": [{"id": 663165, "name": "PS-FRA-DE-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 627}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/8.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PSMP3_MANAGEMENT_LHCONE | PSMP3 MGMT (LHCone) CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160607", "circuits": [{"id": 663125, "name": "PSMP3_MANAGEMENT_LHCONE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 628}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/8.60", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-fra-de | KVMoIP", "circuits": [{"id": 663140, "name": "KVMOIP-FRA-DE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 904}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/8.130", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #dna-fra-de-ilo| Infinera DNA iLO", "circuits": [{"id": 663011, "name": "DNA-FRA-DE-ILO", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 914}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/8.131", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #dna-fr-de | Infinera DNA User", "circuits": [{"id": 663046, "name": "DNA-FR-DE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 915}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/8.172", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ipcamera-fra-de | IP cameras", "circuits": [{"id": 663245, "name": "IPCAMERA-FRA-DE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 943}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 656}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915885 | FRA01-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 658}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 659}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 662}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR | PSMP1 OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20180809;", "circuits": [{"id": 708316, "name": "PS-PSMP-OWAMP-FRA-DE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 663}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERSONAR #ps-psmp-owamp-fra-de| PSMP1 OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20180809", "circuits": [{"id": 708316, "name": "PS-PSMP-OWAMP-FRA-DE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 676}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS NETMON SRF0000001 | NETMON", "circuits": [{"id": 708250, "name": "NETMON_FRA_DE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 664}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/4.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NETMON_FRA_DE | NETMON CONTACT: mandeep.saini@geant.org IMPLEMENTED: 20180809", "circuits": [{"id": 708250, "name": "NETMON_FRA_DE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 677}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 665}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 666}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Reserved for FRA_BAKU Cogent", "circuits": [], "snmp-index": 667}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Cabled to odf-hu29-fra-r10-ODF 16 CPR Port 24", "circuits": [], "snmp-index": 668}, {"router": "mx1.fra.de.geant.net", "name": "ge-1/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 669}, {"router": "mx1.fra.de.geant.net", "name": "et-2/0/2", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 927}, {"router": "mx1.fra.de.geant.net", "name": "et-2/0/5", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 928}, {"router": "mx1.fra.de.geant.net", "name": "et-2/1/2", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 929}, {"router": "mx1.fra.de.geant.net", "name": "et-2/1/5", "bundle": ["ae39"], "bundle-parents": [], "description": "PHY PRIVATE Libnova P_AE39 SRF21026 |", "circuits": [], "snmp-index": 930}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/0/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP3 BWCTL (LHCone) CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160607", "circuits": [{"id": 708213, "name": "PS-FRA-DE-PSMP3-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 586}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/0/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-psmp3-bwctl | PSMP3 BWCTL (LHCone) CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160607", "circuits": [{"id": 708213, "name": "PS-FRA-DE-PSMP3-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 711}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/0/1", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 SRF0000001 | QFX xe-0/0/18", "circuits": [], "snmp-index": 587}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/0/2", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY PRIVATE MICROSOFT SRF19104 EXPRESSROUTE #1 | GEANT-FRA32-09XGMR-CIS-1-PRI-11012019", "circuits": [], "snmp-index": 588}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/0/3", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 SRF0000001 | QFX xe-1/0/18", "circuits": [], "snmp-index": 589}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/1/0", "bundle": ["ae26"], "bundle-parents": [], "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #1 FOR NORDUNET SRF19135 | GEANT-FRA32-09XGMR-CIS-1-PRI-12062019", "circuits": [], "snmp-index": 590}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/1/1", "bundle": ["ae32"], "bundle-parents": [], "description": "PHY UPSTREAM COGENT P_AE32 SRF0000001 | Cogent ID: 1-300398274", "circuits": [], "snmp-index": 591}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/1/2", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY PRIVATE GOOGLE P_AE13 SRF9921625 |", "circuits": [], "snmp-index": 592}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/1/3", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-0", "circuits": [], "snmp-index": 593}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/1/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #AMS-FRA-RARE-P4-9951375 | RARE P4 TESTBED", "circuits": [{"id": 708194, "name": "AMS-FRA-RARE-P4-9951375", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 942}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/0", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-1", "circuits": [], "snmp-index": 594}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #bud-fra_RARE_P4_9951387 | RARE P4 TESTBED", "circuits": [{"id": 708177, "name": "BUD-FRA_RARE_P4_9951387", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1260}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/1", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-2", "circuits": [{"id": 705453, "name": "FRA_HAM-GTS-RARE_200104_FRA", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 595}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/1.101", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS GEANT #fra_ham-GTS-RARE_200104_fra |", "circuits": [{"id": 705453, "name": "FRA_HAM-GTS-RARE_200104_FRA", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 937}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/1.559", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SWITCH GEANT #fra_gen-SWITCH-RARE_21035 |", "circuits": [{"id": 709921, "name": "FRA-GEN-SWITCH-RARE-21035", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1036}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/1.702", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #par_fra_DTN_generator  | RARE P4 TESTBED", "circuits": [{"id": 706947, "name": "PAR_FRA_DTN_GENERATOR", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1318}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/1.766", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS GEANT #fra_mar-REDIRIS-RARE_20092 |", "circuits": [{"id": 708359, "name": "FRA_MAR-REDIRIS-RARE_20092", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1338}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/1.1213", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER HEANET GEANT #dub_fra-HEANET-RARE_20062 |", "circuits": [{"id": 705917, "name": "DUB_FRA-HEANET-RARE_20062", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1319}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR | PSMP2 OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20180809;", "circuits": [], "snmp-index": 596}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/2.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-psmp2-owamp | PSMP2 OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20180809", "circuits": [{"id": 662984, "name": "PS-FRA-DE-PSMP2-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 694}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/2.33", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-psmp2-owamp_additional_if | PSMP2 OWAMP Additional Test interface (logical) CONTACT: niall.donaghy@geant.org IMPLEMENTED: 20170725", "circuits": [{"id": 663074, "name": "PS-FRA-DE-PSMP2-OWAMP_ADDITIONAL_IF", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 726}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9926999 | PSMP2 BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150806", "circuits": [{"id": 708313, "name": "PS-FRA-DE-PSMP2-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 597}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/2/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-psmp2-bwctl| PSMP2 BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150806", "circuits": [{"id": 708313, "name": "PS-FRA-DE-PSMP2-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 732}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/3/0", "bundle": ["ae37"], "bundle-parents": [], "description": "PHY RESERVED | ORACLE FRA TT#2020030534002712 \u0097 Oracle Cloud Port LOA SRF-20-010 | Under testing", "circuits": [], "snmp-index": 598}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/3/1", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY PRIVATE GOOGLE P_AE13 SRF9911065 |", "circuits": [], "snmp-index": 599}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/3/2", "bundle": ["ae38"], "bundle-parents": [], "description": "PHY CUSTOMER CYNET P_ae38 SRF9911591 |Limmasol Connectivity", "circuits": [], "snmp-index": 600}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/3/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9918997 | PSMP1 BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150806", "circuits": [{"id": 708178, "name": "PS-FRA-DE-PSMP1-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 601}, {"router": "mx1.fra.de.geant.net", "name": "xe-3/3/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-psmp1-bwctl | PSMP1 BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150806", "circuits": [{"id": 708178, "name": "PS-FRA-DE-PSMP1-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 825}, {"router": "mx1.fra.de.geant.net", "name": "et-4/0/2", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY PUBLIC DE-CIX P_AE12 SRF0000001 | DE-CIX ID: DE133659 / : Edge01.dx2 Port Hu10/1/4", "circuits": [], "snmp-index": 716}, {"router": "mx1.fra.de.geant.net", "name": "et-4/0/5", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY CUSTOMER RESTENA P_AE18 SRF9914101 |CL CID:441284192 ", "circuits": [], "snmp-index": 723}, {"router": "mx1.fra.de.geant.net", "name": "et-4/1/2", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae9 SRF0000001 | BUC-FRA | TTI REF: WL078541", "circuits": [], "snmp-index": 724}, {"router": "mx1.fra.de.geant.net", "name": "et-4/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 725}, {"router": "mx1.fra.de.geant.net", "name": "et-5/0/2", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER DFN P_AE11 SRF9938185 |", "circuits": [], "snmp-index": 661}, {"router": "mx1.fra.de.geant.net", "name": "et-5/0/5", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER DFN P_AE11 SRF9941605 |", "circuits": [], "snmp-index": 719}, {"router": "mx1.fra.de.geant.net", "name": "et-5/1/2", "bundle": ["ae27"], "bundle-parents": [], "description": "PHY CUSTOMER ULAKBIM P_AE27 SRF21024 | ULAKBIM AP2 - member of ae27 | TTI Circuit ID WL078560", "circuits": [], "snmp-index": 1161}, {"router": "mx1.fra.de.geant.net", "name": "et-5/1/5", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | LEVEL3 ID: BCXT9912", "circuits": [], "snmp-index": 1162}, {"router": "mx1.fra.de.geant.net", "name": "et-7/0/2", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | Level3 ID: BDHQ5314", "circuits": [], "snmp-index": 1304}, {"router": "mx1.fra.de.geant.net", "name": "et-7/0/5", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1305}, {"router": "mx1.fra.de.geant.net", "name": "et-7/1/2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1306}, {"router": "mx1.fra.de.geant.net", "name": "et-7/1/5", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1307}, {"router": "mx1.fra.de.geant.net", "name": "et-8/0/2", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY PUBLIC DE-CIX P_AE12 SRF9939107 | DE-CIX ID: DE088695 / : Edge01.dx2 Port Hu8/1/4", "circuits": [], "snmp-index": 1362}, {"router": "mx1.fra.de.geant.net", "name": "et-8/0/5", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1361}, {"router": "mx1.fra.de.geant.net", "name": "et-8/1/2", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1363}, {"router": "mx1.fra.de.geant.net", "name": "et-8/1/5", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1364}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/0/0", "bundle": ["ae33"], "bundle-parents": [], "description": "PHY RE_INTERCONNECT CSTNET SRF18112 P_ae33 | ID: DE113258", "circuits": [], "snmp-index": 779}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/0/1", "bundle": ["ae21"], "bundle-parents": [], "description": "PHY CUSTOMER IUCC P_AE21 SRF9951335 | IUCC-AP2-LL3 - Tamares Telecom ID: ETH-12160 GNT-E10-003", "circuits": [], "snmp-index": 780}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 781}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/0/3", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS A10_DDOS_SCRUBBING P_AE15 SRF0000001 | A10 e1 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [], "snmp-index": 782}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/0/4", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS A10_DDOS_SCRUBBING P_AE16 SRF0000001 | A10 e5 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [], "snmp-index": 783}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 784}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/0/6", "bundle": ["ae20"], "bundle-parents": [], "description": "PHY PRIVATE Verizon P_AE20 SRF9931219 |", "circuits": [], "snmp-index": 785}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/0/7", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | DFN Future reservation patched to DFN-ODF2.R11 P03 - Requwested by SM", "circuits": [], "snmp-index": 786}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/1/0", "bundle": ["ae20"], "bundle-parents": [], "description": "PHY PRIVATE Verizon P_AE20 SRF9927829 |", "circuits": [], "snmp-index": 790}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/1/1", "bundle": ["ae32"], "bundle-parents": [], "description": "PHY UPSTREAM COGENT  P_AE32 SRF9943647 | Cogent ID: 1-300398262", "circuits": [], "snmp-index": 787}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/1/2", "bundle": ["ae29"], "bundle-parents": [], "description": "PHY PRIVATE AWS P_AE29 SRF9938959 | AS16509", "circuits": [], "snmp-index": 788}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/1/3", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS A10_DDOS_SCRUBBING P_AE15 SRF0000001 | A10 e3 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [], "snmp-index": 789}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/1/4", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS A10_DDOS_SCRUBBING P_AE16 SRF0000001 | A10 e7 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [], "snmp-index": 791}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/1/5", "bundle": ["ae24"], "bundle-parents": [], "description": "PHY PRIVATE EXOSCALE_2 P_AE24 SRF99243269 | ASN61098", "circuits": [], "snmp-index": 792}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/1/6", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS A10_DDOS_SCRUBBING P_AE15 SRF0000001 | A10 e2 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [], "snmp-index": 793}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/1/7", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS A10_DDOS_SCRUBBING P_AE16 SRF0000001 | A10 e6 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [], "snmp-index": 794}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 795}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/2/1", "bundle": ["ae28"], "bundle-parents": [], "description": "PHY UPSTREAM TELIA SRF9943649| Telia ID: IC-338563 ", "circuits": [], "snmp-index": 796}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/2/2", "bundle": ["ae25"], "bundle-parents": [], "description": "PHY PRIVATE T-SYSTEMS P_AE25 SRF9938655 | AS6878", "circuits": [], "snmp-index": 859}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/2/3", "bundle": ["ae21"], "bundle-parents": [], "description": "PHY CUSTOMER IUCC P_AE21 SRF9951331 | IUCC-AP2-LL1 - Tamares Telecom ID: ETH-12160 GNT-E10-001", "circuits": [], "snmp-index": 812}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/2/4", "bundle": ["ae28"], "bundle-parents": [], "description": "PHY UPSTREAM TELIA SRF0000001 | Telia ID: IC-326862", "circuits": [], "snmp-index": 852}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/2/5", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS A10_DDOS_SCRUBBING P_AE15 SRF0000001 | A10 e4 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [], "snmp-index": 860}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/2/6", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS A10_DDOS_SCRUBBING P_AE16 SRF0000001 | A10 e8 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [], "snmp-index": 863}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/2/7", "bundle": ["ae34"], "bundle-parents": [], "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #2 FOR NORDUNET SRF19135 | GEANT-FRA32-09XGMR-CIS-2-SEC-12062019", "circuits": [], "snmp-index": 866}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/3/0", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 SRF0000001 | QFX xe-0/0/19", "circuits": [], "snmp-index": 867}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/3/1", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 SRF0000001 | QFX xe-1/0/19", "circuits": [], "snmp-index": 868}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 870}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 871}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/3/4", "bundle": ["ae36"], "bundle-parents": [], "description": "PHY PRIVATE Verizon P_AE36 Backup | Verizon Media 2-1", "circuits": [], "snmp-index": 872}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/3/5", "bundle": [], "bundle-parents": [], "description": "PHY UPSTREAM COGENT SRF9933981 |EAP GRENA GWS", "circuits": [], "snmp-index": 873}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/3/5.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GRENA COGENT #fra-fra_EAP_GRENA-COGENT_9933981 ", "circuits": [{"id": 663184, "name": "FRA-FRA_EAP_GRENA-COGENT_9933981", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1447}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/3/6", "bundle": [], "bundle-parents": [], "description": "PHY UPSTREAM CenturyLink SRF19096 |EAP AZSCIENCENET GWS | CL ID: 441303554 ", "circuits": [], "snmp-index": 874}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/3/6.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER AZSCIENCENET #fra-fra_EAP_AZSCIENCENET-CL_190961", "circuits": [{"id": 678513, "name": "FRA-FRA_EAP_AZSCIENCENET-CL_190961", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 831}, {"router": "mx1.fra.de.geant.net", "name": "xe-10/3/7", "bundle": ["ae31"], "bundle-parents": [], "description": "PHY CUSTOMER MICROSOFT SRF19104 EXPRESSROUTE #2 | GEANT-FRA32-09XGMR-CIS-2-SEC-11012019", "circuits": [], "snmp-index": 875}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/0/0", "bundle": ["ae36"], "bundle-parents": [], "description": "PHY PRIVATE Verizon P_AE36 Backup | Verizon Media 2-2", "circuits": [], "snmp-index": 971}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/0/1", "bundle": [], "bundle-parents": [], "description": "PHY UPSTREAM CenturyLink SRF19089 |EAP ASNET-AM GWS", "circuits": [], "snmp-index": 972}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/0/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER ASNET-AM ASNET-AM #fra-fra_EAP_ASNET-AM-CL_190891 |", "circuits": [{"id": 663150, "name": "FRA-FRA_EAP_ASNET-AM-CL_190891", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 833}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/0/2", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY CUSTOMER ASNET-AM SRF19088 P_AE17|", "circuits": [], "snmp-index": 969}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/0/3", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER AZSCIENCENET SRF19095| TransTelekom ID:19K212475-001| ", "circuits": [], "snmp-index": 970}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/0/3.100", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER AZSCIENCENET #AZSCIENCENET_TestVLAN_TTK| test vlan in TTK's network ", "circuits": [{"id": 673680, "name": "AZSCIENCENET_TESTVLAN_TTK", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1250}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/0/3.220", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER AZSCIENCENET #fra-fra_EAP_AZSCIENCENET-CL_190961", "circuits": [{"id": 678513, "name": "FRA-FRA_EAP_AZSCIENCENET-CL_190961", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1173}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/0/3.240", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER AZSCIENCENET #AZSCIENCENET_TestVlan_E2E| test vlan for mgen ", "circuits": [{"id": 663144, "name": "AZSCIENCENET_TESTVLAN_E2E", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1214}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/0/3.300", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER AZSCIENCENET #AZSCIENCENET-AP1 | ASN202993 |", "circuits": [{"id": 662906, "name": "AZSCIENCENET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1157}, {"router": "mx1.fra.de.geant.net", "name": "et-11/1/0", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | LEVEL3 ID: 441196414", "circuits": [], "snmp-index": 973}, {"router": "mx1.fra.de.geant.net", "name": "lt-11/1/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 1150}, {"router": "mx1.fra.de.geant.net", "name": "lt-11/1/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-fra-gen-RE_IAS | BGP PEERING - RE SIDE", "circuits": [{"id": 710689, "name": "BGPPEERING-FRA-GEN-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1153}, {"router": "mx1.fra.de.geant.net", "name": "lt-11/1/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #FRA-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 1154}, {"router": "mx1.fra.de.geant.net", "name": "lt-11/1/0.1112", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS ACCESS LHCONE #LHCONE_routing-instance_Peering-frankfurt-lhcone| LHCONE routing-instance ", "circuits": [{"id": 710701, "name": "LHCONE_ROUTING-INSTANCE_PEERING-FRANKFURT-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 880}, {"router": "mx1.fra.de.geant.net", "name": "lt-11/1/0.2111", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS LHCONE #MASTER_instance_Peering-frankfurt-lhcone| MASTER instance ", "circuits": [{"id": 710646, "name": "MASTER_INSTANCE_PEERING-FRANKFURT-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 938}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/2/0", "bundle": ["ae21"], "bundle-parents": [], "description": "PHY CUSTOMER IUCC P_AE21 SRF9951333 | IUCC-AP2-LL2 - Tamares Telecom ID: ETH-12160 GNT-E10-002", "circuits": [], "snmp-index": 974}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/2/1", "bundle": ["ae19"], "bundle-parents": [], "description": "PHY PRIVATE ORACLE P_ae19 SRF19090 | GEANT_Interxion_1-1", "circuits": [], "snmp-index": 975}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/2/2", "bundle": ["ae19"], "bundle-parents": [], "description": "PHY PRIVATE ORACLE P_ae19 SRF19090 | GEANT_Interxion_2-1", "circuits": [], "snmp-index": 976}, {"router": "mx1.fra.de.geant.net", "name": "xe-11/2/3", "bundle": ["ae35"], "bundle-parents": [], "description": "PHY PRIVATE CLOUDFERRO P_AE35 SRF19094 | ASN200999", "circuits": [], "snmp-index": 977}, {"router": "mx1.fra.de.geant.net", "name": "et-11/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 978}, {"router": "mx1.fra.de.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-7/0/5", "et-7/1/2", "et-7/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE GEN SRF0000001 | fra-gen | Coriant G30 300G", "circuits": [], "snmp-index": 652}, {"router": "mx1.fra.de.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-7/0/5", "et-7/1/2", "et-7/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-GEN-IPTRUNK | FRA-GEN | CORIANT G30 300G", "circuits": [{"id": 708728, "name": "FRA_GEN_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1377}, {"router": "mx1.fra.de.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-7/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE POZ SRF0000001 | fra-poz", "circuits": [], "snmp-index": 653}, {"router": "mx1.fra.de.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-7/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-POZ-IPTRUNK | POZ-FRA |  ", "circuits": [{"id": 708745, "name": "FRA-POZ-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 718}, {"router": "mx1.fra.de.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["et-5/1/5", "et-11/1/0"], "description": "LAG INFRASTRUCTURE BACKBONE HAM SRF0000001 | fra-ham", "circuits": [], "snmp-index": 655}, {"router": "mx1.fra.de.geant.net", "name": "ae5.0", "bundle": [], "bundle-parents": ["et-5/1/5", "et-11/1/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-HAM-IPTRUNK | HAM-FRA |  ", "circuits": [{"id": 708714, "name": "FRA-HAM-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 814}, {"router": "mx1.fra.de.geant.net", "name": "ae7", "bundle": [], "bundle-parents": ["et-8/0/5", "et-8/1/2", "et-8/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE AMS SRF0000001 | ams-fra | Coriant G30 300G", "circuits": [], "snmp-index": 1382}, {"router": "mx1.fra.de.geant.net", "name": "ae7.0", "bundle": [], "bundle-parents": ["et-8/0/5", "et-8/1/2", "et-8/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-FRA-IPTRUNK | AMS-FRA |Coriant G30 300G", "circuits": [{"id": 708773, "name": "AMS-FRA-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1383}, {"router": "mx1.fra.de.geant.net", "name": "ae8", "bundle": [], "bundle-parents": ["et-2/0/2", "et-2/0/5", "et-2/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE FRA SRF0000001 | fra-pra | Coriant G30 300G", "circuits": [], "snmp-index": 995}, {"router": "mx1.fra.de.geant.net", "name": "ae8.0", "bundle": [], "bundle-parents": ["et-2/0/2", "et-2/0/5", "et-2/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA_PRA_IPTRUNK | FRA-PRA |Coriant G30 300G", "circuits": [{"id": 708747, "name": "FRA_PRA_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1002}, {"router": "mx1.fra.de.geant.net", "name": "ae9", "bundle": [], "bundle-parents": ["et-4/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE FRA SRF0000001 | buc-fra | TTI REF: WL078541", "circuits": [], "snmp-index": 741}, {"router": "mx1.fra.de.geant.net", "name": "ae9.0", "bundle": [], "bundle-parents": ["et-4/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC_FRA_IPTRUNK | BUC-FRA | TTI REF: WL078541", "circuits": [], "snmp-index": 1053}, {"router": "mx1.fra.de.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-3/0/2"], "description": "LAG CUSTOMER MICROSOFT SRF19104 EXPRESSROUTE #1 | GEANT-FRA32-09XGMR-CIS-1-PRI-11012019", "circuits": [], "snmp-index": 1006}, {"router": "mx1.fra.de.geant.net", "name": "ae10.3", "bundle": [], "bundle-parents": ["xe-3/0/2"], "description": "SRV_GCS CUSTOMER CERN #CERN_GVA_ExpressRoute_VLAN496 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706945, "name": "CERN_GVA_EXPRESSROUTE_VLAN496", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 933}, {"router": "mx1.fra.de.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5"], "description": "LAG CUSTOMER DFN SRF9923337 |", "circuits": [], "snmp-index": 744}, {"router": "mx1.fra.de.geant.net", "name": "ae11.100", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5"], "description": "SRV_GLOBAL CUSTOMER DFN #DFN-AP1 | ASN680 | DFN ID: GE100/ANWD_KA2994_FRA_0GEANT DFN AP ", "circuits": [{"id": 662999, "name": "DFN-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 855}, {"router": "mx1.fra.de.geant.net", "name": "ae11.111", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5"], "description": "SRV_L3VPN CUSTOMER DFN #DFN-AP1-LHCONE | ASN680", "circuits": [{"id": 663062, "name": "DFN-AP1-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 854}, {"router": "mx1.fra.de.geant.net", "name": "ae11.112", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5"], "description": "SRV_MDVPN CUSTOMER DFN #DFN_AP1_BGP_LU_CoC-1 | DFN-BGP-LU-CoC-1", "circuits": [{"id": 663092, "name": "DFN_AP1_BGP_LU_COC-1", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 879}, {"router": "mx1.fra.de.geant.net", "name": "ae11.333", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5"], "description": "SRV_IAS CUSTOMER DFN #DFN-AP1-IAS IASPS | ASN680 | ", "circuits": [{"id": 662914, "name": "DFN-AP1-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 936}, {"router": "mx1.fra.de.geant.net", "name": "ae11.353", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5"], "description": "SRV_L2CIRCUIT CUSTOMER DFN SINET #fra-par_JAXA_DFN-SINET_14005 |", "circuits": [{"id": 706059, "name": "FRA-PAR_JAXA_DFN-SINET_14005", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 712}, {"router": "mx1.fra.de.geant.net", "name": "ae11.667", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5"], "description": "SRV_CLS CUSTOMER DFN #DFN-AP1-CLS|ASN680 | ", "circuits": [{"id": 663029, "name": "DFN-AP1-CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 519}, {"router": "mx1.fra.de.geant.net", "name": "ae11.931", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5"], "description": "SRV_L2CIRCUIT CUSTOMER DFN REDIRIS SRF21028 | #fra_mar-DFN-REDIRIS_21028", "circuits": [{"id": 709749, "name": "FRA_MAR-DFN-REDIRIS_21028", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1033}, {"router": "mx1.fra.de.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["et-4/0/2", "et-8/0/2"], "description": "LAG PUBLIC DE-CIX SRF9924381", "circuits": [], "snmp-index": 745}, {"router": "mx1.fra.de.geant.net", "name": "ae12.100", "bundle": [], "bundle-parents": ["et-4/0/2", "et-8/0/2"], "description": "SRV_IAS PUBLIC DE-CIX #IX_Peerings_in_DE-CIX_fra |", "circuits": [{"id": 663073, "name": "IX_PEERINGS_IN_DE-CIX_FRA", "type": "IP PEERING - NON R&E (PUBLIC)", "status": "operational"}], "snmp-index": 522}, {"router": "mx1.fra.de.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["xe-3/1/2", "xe-3/3/1"], "description": "LAG PRIVATE GOOGLE SRF9921623 |", "circuits": [], "snmp-index": 746}, {"router": "mx1.fra.de.geant.net", "name": "ae13.0", "bundle": [], "bundle-parents": ["xe-3/1/2", "xe-3/3/1"], "description": "SRV_IAS PRIVATE GOOGLE #GOOGLE_15169_DE | ASN15169", "circuits": [{"id": 708217, "name": "GOOGLE_15169_DE", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 897}, {"router": "mx1.fra.de.geant.net", "name": "ae14", "bundle": [], "bundle-parents": ["ge-0/3/6"], "description": "LAG CUSTOMER CAREN SRF0000001 |", "circuits": [], "snmp-index": 747}, {"router": "mx1.fra.de.geant.net", "name": "ae14.100", "bundle": [], "bundle-parents": ["ge-0/3/6"], "description": "SRV_GLOBAL RE_INTERCONNECT CAREN #DE_CAREN | ASN197118 | ", "circuits": [{"id": 663186, "name": "DE_CAREN", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1047}, {"router": "mx1.fra.de.geant.net", "name": "ae14.333", "bundle": [], "bundle-parents": ["ge-0/3/6"], "description": "SRV_IAS CUSTOMER CAREN #DE_CAREN_IAS IASPS | ASN197118 |", "circuits": [{"id": 663077, "name": "DE_CAREN_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 1043}, {"router": "mx1.fra.de.geant.net", "name": "ae15", "bundle": [], "bundle-parents": ["xe-10/0/3", "xe-10/1/3", "xe-10/1/6", "xe-10/2/5"], "description": "LAG INFRASTRUCTURE ACCESS A10_DDOS_SCRUBBING SRF0000001  | Dirty_Traffic A10 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [], "snmp-index": 748}, {"router": "mx1.fra.de.geant.net", "name": "ae15.720", "bundle": [], "bundle-parents": ["xe-10/0/3", "xe-10/1/3", "xe-10/1/6", "xe-10/2/5"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #A10_DDOS_SCRUBBING_FRA_Dirty_Traffic | Dirty_Traffic CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [{"id": 663017, "name": "A10_DDOS_SCRUBBING_FRA_DIRTY_TRAFFIC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1192}, {"router": "mx1.fra.de.geant.net", "name": "ae16", "bundle": [], "bundle-parents": ["xe-10/0/4", "xe-10/1/4", "xe-10/1/7", "xe-10/2/6"], "description": "LAG INFRASTRUCTURE ACCESS A10_DDOS_SCRUBBING SRF0000001 | Clean_Traffic A10 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [], "snmp-index": 749}, {"router": "mx1.fra.de.geant.net", "name": "ae16.740", "bundle": [], "bundle-parents": ["xe-10/0/4", "xe-10/1/4", "xe-10/1/7", "xe-10/2/6"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #A10_DDOS_SCRUBBING_FRA_Clean_traffic | Clean_Traffic CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", "circuits": [{"id": 663195, "name": "A10_DDOS_SCRUBBING_FRA_CLEAN_TRAFFIC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1194}, {"router": "mx1.fra.de.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["xe-11/0/2"], "description": "LAG CUSTOMER ASNET-AM SRF9931823 |", "circuits": [], "snmp-index": 750}, {"router": "mx1.fra.de.geant.net", "name": "ae17.100", "bundle": [], "bundle-parents": ["xe-11/0/2"], "description": "SRV_GLOBAL CUSTOMER TEST #ASNET_TEST_VLAN_E2E | Vlan terminated in GNC ", "circuits": [{"id": 663236, "name": "ASNET_TEST_VLAN_E2E", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1226}, {"router": "mx1.fra.de.geant.net", "name": "ae17.200", "bundle": [], "bundle-parents": ["xe-11/0/2"], "description": "SRV_GLOBAL CUSTOMER ASNET-AM #ASNET-AM-AP1 | ASN47623 |", "circuits": [{"id": 662912, "name": "ASNET-AM-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1058}, {"router": "mx1.fra.de.geant.net", "name": "ae17.220", "bundle": [], "bundle-parents": ["xe-11/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER ASNET-AM ASNET-AM #fra-fra_EAP_ASNET-AM-CL_190891 |", "circuits": [{"id": 663150, "name": "FRA-FRA_EAP_ASNET-AM-CL_190891", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 983}, {"router": "mx1.fra.de.geant.net", "name": "ae18", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "LAG CUSTOMER RESTENA SRF9922289 |", "circuits": [], "snmp-index": 751}, {"router": "mx1.fra.de.geant.net", "name": "ae18.333", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_IAS CUSTOMER RESTENA #RESTENA_AP1_IAS IASGWS | ASN2602 | ", "circuits": [{"id": 663220, "name": "RESTENA_AP1_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 717}, {"router": "mx1.fra.de.geant.net", "name": "ae18.667", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_CLS CUSTOMER RESTENA #RESTENA_AP1_CLS|ASN2602 | ", "circuits": [{"id": 677335, "name": "RESTENA_AP1_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1261}, {"router": "mx1.fra.de.geant.net", "name": "ae18.854", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_L2CIRCUIT CUSTOMER RESTENA RENATER #fra-par_MISC_RESTENA_RENATER_20030 |", "circuits": [{"id": 705473, "name": "FRA-PAR_MISC_RESTENA_RENATER_20030", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1278}, {"router": "mx1.fra.de.geant.net", "name": "ae18.2602", "bundle": [], "bundle-parents": ["et-4/0/5"], "description": "SRV_GLOBAL CUSTOMER RESTENA #RESTENA-AP1 | ASN2602 |", "circuits": [{"id": 663108, "name": "RESTENA-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 730}, {"router": "mx1.fra.de.geant.net", "name": "ae19", "bundle": [], "bundle-parents": ["xe-11/2/1", "xe-11/2/2"], "description": "LAG PRIVATE ORACLE SRF19090", "circuits": [], "snmp-index": 834}, {"router": "mx1.fra.de.geant.net", "name": "ae19.112", "bundle": [], "bundle-parents": ["xe-11/2/1", "xe-11/2/2"], "description": "SRV_L2CIRCUIT CUSTOMER ORACLE CERN #fra-gen_ORACLE-CERN_20150 |", "circuits": [{"id": 705439, "name": "FRA-GEN_ORACLE-CERN_20150", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 891}, {"router": "mx1.fra.de.geant.net", "name": "ae19.113", "bundle": [], "bundle-parents": ["xe-11/2/1", "xe-11/2/2"], "description": "SRV_L2CIRCUIT CUSTOMER ORACLE CERN #fra-gen_ORACLE-CERN_19114 |", "circuits": [{"id": 705431, "name": "FRA-GEN_ORACLE-CERN_19114", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1003}, {"router": "mx1.fra.de.geant.net", "name": "ae19.114", "bundle": [], "bundle-parents": ["xe-11/2/1", "xe-11/2/2"], "description": "SRV_L2CIRCUIT CUSTOMER ORACLE CERN #fra-gen_ORACLE-CERN_20094 |", "circuits": [{"id": 705442, "name": "FRA-GEN_ORACLE-CERN_20094", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1339}, {"router": "mx1.fra.de.geant.net", "name": "ae20", "bundle": [], "bundle-parents": ["xe-10/0/6", "xe-10/1/0"], "description": "LAG PRIVATE Verizon Digital SRF9942909 |", "circuits": [], "snmp-index": 753}, {"router": "mx1.fra.de.geant.net", "name": "ae20.0", "bundle": [], "bundle-parents": ["xe-10/0/6", "xe-10/1/0"], "description": "SRV_IAS PRIVATE VERIZON #VERIZON_DIGITAL_15133_DE | ASN15133", "circuits": [{"id": 708291, "name": "VERIZON_DIGITAL_15133_DE", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 1237}, {"router": "mx1.fra.de.geant.net", "name": "ae21", "bundle": [], "bundle-parents": ["xe-10/0/1", "xe-10/2/3", "xe-11/2/0"], "description": "LAG CUSTOMER IUCC SRF9915965 | IUCC-AP2-LAG", "circuits": [], "snmp-index": 754}, {"router": "mx1.fra.de.geant.net", "name": "ae21.100", "bundle": [], "bundle-parents": ["xe-10/0/1", "xe-10/2/3", "xe-11/2/0"], "description": "SRV_GLOBAL CUSTOMER IUCC #IUCC-AP2 | ASN378 | ", "circuits": [{"id": 663155, "name": "IUCC-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1013}, {"router": "mx1.fra.de.geant.net", "name": "ae21.333", "bundle": [], "bundle-parents": ["xe-10/0/1", "xe-10/2/3", "xe-11/2/0"], "description": "SRV_IAS CUSTOMER IUCC #IUCC-AP2-IAS IASGWS | ASN378 |", "circuits": [{"id": 663228, "name": "IUCC-AP2-IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 806}, {"router": "mx1.fra.de.geant.net", "name": "ae21.667", "bundle": [], "bundle-parents": ["xe-10/0/1", "xe-10/2/3", "xe-11/2/0"], "description": "SRV_CLS CUSTOMER IUCC #IUCC-AP2-CLS | ASN378 | ", "circuits": [{"id": 662953, "name": "IUCC-AP2-CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 727}, {"router": "mx1.fra.de.geant.net", "name": "ae23", "bundle": [], "bundle-parents": ["xe-0/0/0"], "description": "LAG CUSTOMER GRENA SRF9937073|", "circuits": [], "snmp-index": 756}, {"router": "mx1.fra.de.geant.net", "name": "ae23.200", "bundle": [], "bundle-parents": ["xe-0/0/0"], "description": "SRV_GLOBAL CUSTOMER GRENA #GRENA-AP2 | ASN20545 |", "circuits": [{"id": 663227, "name": "GRENA-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1086}, {"router": "mx1.fra.de.geant.net", "name": "ae23.210", "bundle": [], "bundle-parents": ["xe-0/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER GRENA COGENT #fra-fra_EAP_GRENA-COGENT_9933981", "circuits": [{"id": 663184, "name": "FRA-FRA_EAP_GRENA-COGENT_9933981", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1072}, {"router": "mx1.fra.de.geant.net", "name": "ae24", "bundle": [], "bundle-parents": ["xe-10/1/5"], "description": "LAG PRIVATE EXOSCALE SRF9943307 |", "circuits": [], "snmp-index": 757}, {"router": "mx1.fra.de.geant.net", "name": "ae24.0", "bundle": [], "bundle-parents": ["xe-10/1/5"], "description": "SRV_CLS PRIVATE EXOSCALE #DE-EXOSCALE_CLS|ASN61098 | ", "circuits": [{"id": 708254, "name": "DE-EXOSCALE_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1251}, {"router": "mx1.fra.de.geant.net", "name": "ae25", "bundle": [], "bundle-parents": ["xe-10/2/2"], "description": "LAG PRIVATE T-SYSTEMS SRF9939159 |", "circuits": [], "snmp-index": 758}, {"router": "mx1.fra.de.geant.net", "name": "ae25.0", "bundle": [], "bundle-parents": ["xe-10/2/2"], "description": "SRV_CLS PRIVATE T-SYSTEMS #DE-T-SYSTEMS_CLS|ASN6878 | ", "circuits": [{"id": 708258, "name": "DE-T-SYSTEMS_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1079}, {"router": "mx1.fra.de.geant.net", "name": "ae26", "bundle": [], "bundle-parents": ["xe-3/1/0"], "description": "LAG CUSTOMER MICROSOFT EXPRESSROUTE #1 FOR NORDUNET SRF19135 | GEANT-FRA32-09XGMR-CIS-1-PRI-12062019", "circuits": [], "snmp-index": 759}, {"router": "mx1.fra.de.geant.net", "name": "ae27", "bundle": [], "bundle-parents": ["et-5/1/2"], "description": "LAG CUSTOMER ULAKBIM SRF9940983 |", "circuits": [], "snmp-index": 760}, {"router": "mx1.fra.de.geant.net", "name": "ae27.100", "bundle": [], "bundle-parents": ["et-5/1/2"], "description": "SRV_GLOBAL CUSTOMER ULAKBIM #ULAKBIM-AP2 | ASN8517 |", "circuits": [{"id": 663056, "name": "ULAKBIM-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1211}, {"router": "mx1.fra.de.geant.net", "name": "ae27.333", "bundle": [], "bundle-parents": ["et-5/1/2"], "description": "SRV_IAS CUSTOMER ULAKBIM #ULAKBIM_AP2_IAS IASPS | ASN8517 ", "circuits": [{"id": 663104, "name": "ULAKBIM_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 1210}, {"router": "mx1.fra.de.geant.net", "name": "ae28", "bundle": [], "bundle-parents": ["xe-10/2/1", "xe-10/2/4"], "description": "LAG UPSTREAM TELIA SRF9940459", "circuits": [], "snmp-index": 761}, {"router": "mx1.fra.de.geant.net", "name": "ae28.0", "bundle": [], "bundle-parents": ["xe-10/2/1", "xe-10/2/4"], "description": "SRV_IAS UPSTREAM TELIA #TELIA_GWS_FRA | ASN1299", "circuits": [{"id": 708225, "name": "TELIA_GWS_FRA", "type": "GWS - UPSTREAM", "status": "operational"}], "snmp-index": 1202}, {"router": "mx1.fra.de.geant.net", "name": "ae29", "bundle": [], "bundle-parents": ["xe-10/1/2"], "description": "LAG PRIVATE AWS SRF9940987 |", "circuits": [], "snmp-index": 762}, {"router": "mx1.fra.de.geant.net", "name": "ae29.0", "bundle": [], "bundle-parents": ["xe-10/1/2"], "description": "SRV_CLS PRIVATE AWS #DE-AWS_CLS |ASN16509 | ", "circuits": [{"id": 708273, "name": "DE-AWS_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1208}, {"router": "mx1.fra.de.geant.net", "name": "ae30", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "LAG INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | QFX1.FRA.DE SRX BYPASS", "circuits": [], "snmp-index": 763}, {"router": "mx1.fra.de.geant.net", "name": "ae30.991", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "SRV_GLOBAL INFRASTRUCTURE Access #CORIANT_TNMS_MANAGEMENT_FRA_DE | CORIANT TNMS MANAGEMENT", "circuits": [{"id": 663107, "name": "CORIANT_TNMS_MANAGEMENT_FRA_DE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1249}, {"router": "mx1.fra.de.geant.net", "name": "ae30.2001", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #ESXI_Management_Fra | ESXI MANAGEMENT", "circuits": [{"id": 662909, "name": "ESXI_MANAGEMENT_FRA", "type": "POP LAN LINK", "status": "operational"}], "snmp-index": 895}, {"router": "mx1.fra.de.geant.net", "name": "ae30.3000", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VM_DataNetwork_Fra| VM DATA NETWORK", "circuits": [{"id": 663215, "name": "VM_DATANETWORK_FRA", "type": "POP LAN LINK", "status": "operational"}], "snmp-index": 869}, {"router": "mx1.fra.de.geant.net", "name": "ae30.3001", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_FRANKFURT_VRF_VLAN3001 | NAGIOS gateway for taas-control VRF", "circuits": [{"id": 662943, "name": "TAAS_CONTROL_FRANKFURT_VRF_VLAN3001", "type": "L3-VPN", "status": "operational"}], "snmp-index": 520}, {"router": "mx1.fra.de.geant.net", "name": "ae30.3002", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-latency-network-fra-de| Latency network", "circuits": [{"id": 663005, "name": "PS-FRA-DE-LATENCY-TESTVM_LATENCY", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1394}, {"router": "mx1.fra.de.geant.net", "name": "ae30.3003", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-throughput-network-fra-de | Throughput network", "circuits": [{"id": 663043, "name": "PS-FRA-DE-LATENCY-TESTVM_THROUGHPUT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1395}, {"router": "mx1.fra.de.geant.net", "name": "ae30.3004", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_FRANKFURT_VRF_VLAN3004 | RANCID gateway for taas-control VRF", "circuits": [{"id": 662995, "name": "TAAS_CONTROL_FRANKFURT_VRF_VLAN3004", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1401}, {"router": "mx1.fra.de.geant.net", "name": "ae30.3005", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "SRV_VPLS INFRASTRUCTURE RARE P4 #RARE_Gateway | pfSense Gateway for RARE P4 Box VPLS", "circuits": [{"id": 662951, "name": "RARE_GATEWAY", "type": "L2SERVICES", "status": "operational"}], "snmp-index": 1232}, {"router": "mx1.fra.de.geant.net", "name": "ae30.3006", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_GTS_IMS_MEDIATION_FRANKFURT | IMS Mediation Gateway for taas-control VRF", "circuits": [{"id": 677305, "name": "TAAS_GTS_IMS_MEDIATION_FRANKFURT", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1275}, {"router": "mx1.fra.de.geant.net", "name": "ae30.3007", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX_FRA_DE | Infoblox vFRA", "circuits": [{"id": 678599, "name": "INFOBLOX_FRA_DE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1292}, {"router": "mx1.fra.de.geant.net", "name": "ae30.3008", "bundle": [], "bundle-parents": ["xe-3/0/1", "xe-3/0/3", "xe-10/3/0", "xe-10/3/1"], "description": "SRV_GLOBAL INFRASTRUCTURE Access link #INFOBLOX_DNS_FRA_DE | TEST - Infoblox GRID /// NMAAS IS-IS Listener", "circuits": [{"id": 678811, "name": "INFOBLOX_DNS_FRA_DE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1321}, {"router": "mx1.fra.de.geant.net", "name": "ae31", "bundle": [], "bundle-parents": ["xe-10/3/7"], "description": "LAG CUSTOMER MICROSOFT SRF19104 EXPRESSROUTE #2 | GEANT-FRA32-09XGMR-CIS-2-SEC-11012019", "circuits": [], "snmp-index": 1007}, {"router": "mx1.fra.de.geant.net", "name": "ae31.3", "bundle": [], "bundle-parents": ["xe-10/3/7"], "description": "SRV_GCS CUSTOMER CERN  #CERN_GVA_ExpressRoute_Vlan496_Backup | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706764, "name": "CERN_GVA_EXPRESSROUTE_VLAN496_BACKUP", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 931}, {"router": "mx1.fra.de.geant.net", "name": "ae32", "bundle": [], "bundle-parents": ["xe-3/1/1", "xe-10/1/1"], "description": "LAG UPSTREAM COGENT SRF0000001 | ", "circuits": [], "snmp-index": 820}, {"router": "mx1.fra.de.geant.net", "name": "ae32.0", "bundle": [], "bundle-parents": ["xe-3/1/1", "xe-10/1/1"], "description": "SRV_IAS UPSTREAM COGENT #COGENT_GWS_FRA | ASN174", "circuits": [{"id": 708229, "name": "COGENT_GWS_FRA", "type": "GWS - UPSTREAM", "status": "operational"}], "snmp-index": 824}, {"router": "mx1.fra.de.geant.net", "name": "ae33", "bundle": [], "bundle-parents": ["xe-10/0/0"], "description": "LAG RE_INTERCONNECT CSTNET SRF18112", "circuits": [], "snmp-index": 981}, {"router": "mx1.fra.de.geant.net", "name": "ae33.111", "bundle": [], "bundle-parents": ["xe-10/0/0"], "description": "SRV_L3VPN RE_Interconnect CSTNET #CSTNET_FRA_LHCONE | ASN7497", "circuits": [{"id": 663122, "name": "CSTNET_FRA_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1055}, {"router": "mx1.fra.de.geant.net", "name": "ae33.200", "bundle": [], "bundle-parents": ["xe-10/0/0"], "description": "SRV_GLOBAL RE_INTERCONNECT CSTNET #DE_CSTNET | ASN7497 | ID: CBEI0128 ", "circuits": [{"id": 662986, "name": "DE_CSTNET", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 996}, {"router": "mx1.fra.de.geant.net", "name": "ae34", "bundle": [], "bundle-parents": ["xe-10/2/7"], "description": "LAG CUSTOMER MICROSOFT EXPRESSROUTE #2 FOR NORDUNET SRF19135 | GEANT-FRA32-09XGMR-CIS-2-SEC-12062019", "circuits": [], "snmp-index": 1195}, {"router": "mx1.fra.de.geant.net", "name": "ae35", "bundle": [], "bundle-parents": ["xe-11/2/3"], "description": "LAG PRIVATE CLOUDFERRO SRF19094 |", "circuits": [], "snmp-index": 1217}, {"router": "mx1.fra.de.geant.net", "name": "ae35.0", "bundle": [], "bundle-parents": ["xe-11/2/3"], "description": "SRV_CLS PRIVATE CLOUDFERRO #DE-CLOUDFERRO_CLS|ASN200999 | ", "circuits": [{"id": 708235, "name": "DE-CLOUDFERRO_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1218}, {"router": "mx1.fra.de.geant.net", "name": "ae36", "bundle": [], "bundle-parents": ["xe-10/3/4", "xe-11/0/0"], "description": "LAG PRIVATE Verizon Digital SRF9942909 Backup |", "circuits": [], "snmp-index": 1224}, {"router": "mx1.fra.de.geant.net", "name": "ae36.0", "bundle": [], "bundle-parents": ["xe-10/3/4", "xe-11/0/0"], "description": "SRV_IAS PRIVATE VERIZON #VERIZON_DIGITAL_15133_DE-2 | AS15133", "circuits": [{"id": 708192, "name": "VERIZON_DIGITAL_15133_DE-2", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 1225}, {"router": "mx1.fra.de.geant.net", "name": "ae37.0", "bundle": [], "bundle-parents": ["xe-3/3/0"], "description": "SRV_CLS PRIVATE ORACLE #DE-ORACLE_CLS|ASN31898 | Under Testing", "circuits": [{"id": 708312, "name": "DE-ORACLE_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1281}, {"router": "mx1.fra.de.geant.net", "name": "ae38", "bundle": [], "bundle-parents": ["xe-3/3/2"], "description": "LAG CUSTOMER CYNET AP2 SRF9951329 |", "circuits": [], "snmp-index": 921}, {"router": "mx1.fra.de.geant.net", "name": "ae38.100", "bundle": [], "bundle-parents": ["xe-3/3/2"], "description": "SRV_GLOBAL CUSTOMER CYNET #CYNET-AP2  | ASN3268 |", "circuits": [{"id": 702079, "name": "CYNET-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 922}, {"router": "mx1.fra.de.geant.net", "name": "ae38.333", "bundle": [], "bundle-parents": ["xe-3/3/2"], "description": "SRV_IAS CUSTOMER CYNET #CYNET_AP2_IAS IASGWS | ASN3268", "circuits": [{"id": 702074, "name": "CYNET_AP2_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 923}, {"router": "mx1.fra.de.geant.net", "name": "ae39", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "LAG PRIVATE LIBNOVA SRF21026 |", "circuits": [], "snmp-index": 1025}, {"router": "mx1.fra.de.geant.net", "name": "ae39.0", "bundle": [], "bundle-parents": ["et-2/1/5"], "description": "SRV_IAS PRIVATE LIBNOVA #LIBNOVA_39743_DE | ASN39743", "circuits": [{"id": 709624, "name": "LIBNOVA_39743_DE", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 1026}, {"router": "mx1.fra.de.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 1222}, {"router": "mx1.fra.de.geant.net", "name": "irb.105", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SPLUNK_FRA_DE | Splunk1 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20160917", "circuits": [], "snmp-index": 911}, {"router": "mx1.fra.de.geant.net", "name": "irb.998", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #QFX_Management_Fra| QFX MANAGEMENT", "circuits": [], "snmp-index": 835}, {"router": "mx1.fra.de.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #dna-fra-de-esxi_irb| Infinera DNA ESXI", "circuits": [], "snmp-index": 707}, {"router": "mx1.fra.de.geant.net", "name": "irb.3000", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VM_DataNetwork_Fra_IRB| VM DATA NETWORK", "circuits": [{"id": 663215, "name": "VM_DATANETWORK_FRA", "type": "POP LAN LINK", "status": "operational"}], "snmp-index": 1084}, {"router": "mx1.fra.de.geant.net", "name": "irb.3001", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_FRANKFURT_VRF_VLAN3001_LOGICAL_INTERFACE | NAGIOS gateway for taas-control VRF", "circuits": [{"id": 662943, "name": "TAAS_CONTROL_FRANKFURT_VRF_VLAN3001", "type": "L3-VPN", "status": "operational"}], "snmp-index": 678}, {"router": "mx1.fra.de.geant.net", "name": "irb.3002", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-latency-network-fra-de |  Perfsonar test VMs - latency measurement VLAN", "circuits": [{"id": 663005, "name": "PS-FRA-DE-LATENCY-TESTVM_LATENCY", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1384}, {"router": "mx1.fra.de.geant.net", "name": "irb.3003", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-throughput-network-fra-de | Perfsonar test VMs - throughput measurement VLAN", "circuits": [{"id": 663043, "name": "PS-FRA-DE-LATENCY-TESTVM_THROUGHPUT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1385}, {"router": "mx1.fra.de.geant.net", "name": "irb.3004", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_FRANKFURT_VRF_VLAN3004_LOGICAL_INTERFACE | RANCID gateway for taas-control VRF", "circuits": [{"id": 662995, "name": "TAAS_CONTROL_FRANKFURT_VRF_VLAN3004", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1396}, {"router": "mx1.fra.de.geant.net", "name": "irb.3006", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_GTS_IMS_MEDIATION_FRANKFURT_LOGiCAL_INTERFACE | IMS Mediation Gateway for taas-control VRF", "circuits": [{"id": 677305, "name": "TAAS_GTS_IMS_MEDIATION_FRANKFURT", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1270}, {"router": "mx1.fra.de.geant.net", "name": "lt-1/1/0.21", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF9938745 | VPN-Proxy to GEANT PE for BGP-LU peering", "circuits": [], "snmp-index": 1140}, {"router": "mx1.fra.de.geant.net", "name": "lt-1/1/0.31", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF0000001 | VPN-Proxy to GEANT PE for IBGP", "circuits": [], "snmp-index": 1141}, {"router": "mx1.fra.de.geant.net", "name": "ae27.360", "bundle": [], "bundle-parents": ["et-5/1/2"], "description": "SRV_MDVPN CUSTOMER ULAKBIM #ULAKBIM-GN-PRACE-VPN-Proxy-Frankfurt-L3VPN | VPN-Proxy to NREN CE", "circuits": [{"id": 709645, "name": "ULAKBIM-GN-PRACE-VPN-PROXY-FRANKFURT-L3VPN", "type": "MD-VPN (PROXY)", "status": "operational"}], "snmp-index": 1209}, {"router": "mx1.fra.de.geant.net", "name": "ae38.360", "bundle": [], "bundle-parents": ["xe-3/3/2"], "description": "SRV_MDVPN CUSTOMER CYNET #CYNET-GN-PRACE-VPN-Proxy-Frankfurt-L3VPN_Backup | VPN-Proxy to NREN CE AP_B", "circuits": [{"id": 708703, "name": "CYNET-GN-PRACE-VPN-PROXY-FRANKFURT-L3VPN_BACKUP | VPN-PROXY TO NREN CE AP_B", "type": "MD-VPN (PROXY)", "status": "operational"}], "snmp-index": 941}, {"router": "mx1.fra.de.geant.net", "name": "ae38.370", "bundle": [], "bundle-parents": ["xe-3/3/2"], "description": "SRV_MDVPN CUSTOMER CYNET #CYNET-GN-PRACE-VPN-Proxy-Athens2-L3VPN | VPN-Proxy to NREN CE AP_P", "circuits": [{"id": 708701, "name": "CYNET-GN-PRACE-VPN-PROXY-FRANKFURT-L3VPN | VPN-PROXY TO NREN CE AP_P", "type": "MD-VPN (PROXY)", "status": "operational"}], "snmp-index": 1030}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9922285 | MIL01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 592}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | MGMT interface for corsa", "circuits": [], "snmp-index": 593}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 594}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | OPENFLOW port for virtual switch OF control", "circuits": [], "snmp-index": 595}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE |reserved for Tirana", "circuits": [], "snmp-index": 596}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE |reserved for Tirana", "circuits": [], "snmp-index": 597}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 598}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 599}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 600}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 601}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9922287 | MIL01-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 602}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 603}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | mil it POP LAN", "circuits": [], "snmp-index": 604}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2.7", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NTP5.GEANT.NET", "circuits": [{"id": 661176, "name": "NTP5.GEANT.NET", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 772}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-mil2-it-DRAC | HADES DRAC", "circuits": [{"id": 660640, "name": "HADES-MIL2-IT-DRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 750}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP_MIL2_IT | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", "circuits": [{"id": 661645, "name": "OWAMP_MIL2_IT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 753}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-mil2-it-idrac |perfSONAR iDRAC", "circuits": [{"id": 661192, "name": "PS-MIL2-IT-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 640}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-mil2-it-management |perfSONAR MGMT", "circuits": [{"id": 661249, "name": "PS-MIL2-IT-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 677}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2.250", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #taas-control-mil2-it-vlan250| TAAS GTS CONTROL", "circuits": [{"id": 661189, "name": "TAAS-CONTROL-MIL2-IT-VLAN250", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 735}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2.301", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #MIL2_Groove_1 | MIL2 Groove 1  ", "circuits": [{"id": 661617, "name": "MIL2_GROOVE_1", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 759}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2.302", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #MIL2_Groove_1_Management | MIL2 Groove 1 Direct Management", "circuits": [{"id": 660437, "name": "MIL2_GROOVE_1_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 764}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2.401", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #MIL2_Groove_2 | MIL2 Groove 2  ", "circuits": [{"id": 660443, "name": "MIL2_GROOVE_2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 765}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2.402", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #MIL2_Groove_2_Management | MIL2 Groove 2 Direct Management", "circuits": [{"id": 661776, "name": "MIL2_GROOVE_2_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 768}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/2.991", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access #MIL2_Groove | MIL2 Groove G30", "circuits": [{"id": 707240, "name": "MIL2_GROOVE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 653}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 605}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 606}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 607}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP", "circuits": [{"id": 708228, "name": "PS-MIL2-IT-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 608}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/6.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-mil2-it-owamp | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160906", "circuits": [{"id": 708228, "name": "PS-MIL2-IT-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 762}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access", "circuits": [], "snmp-index": 609}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access | TO GTS EX P12", "circuits": [], "snmp-index": 610}, {"router": "mx1.mil2.it.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS AWTRIAL SRF0000001 | AWTRIAL CORSA MGMT ACCESS", "circuits": [], "snmp-index": 611}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/0/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | OTEGlobe 1-4XPLWIS ", "circuits": [], "snmp-index": 526}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/0/1", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER RASH P_AE13 SRF0000001 |", "circuits": [], "snmp-index": 527}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/0/2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | OTEGlobe 1-6RK0GC7 ", "circuits": [], "snmp-index": 838}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/0/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | Link to gts.mx1 xe-1/2/5:3", "circuits": [], "snmp-index": 840}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/0/5", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | OTE 1-94LW1NA", "circuits": [], "snmp-index": 841}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/0/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P4", "circuits": [{"id": 661479, "name": "SDX-L2-HOSTD-TO-BR52", "type": "GEANT PLUS", "status": "operational"}, {"id": 661742, "name": "SDX-L2-HOSTD-TO-BR51", "type": "GEANT PLUS", "status": "operational"}, {"id": 661923, "name": "SDX-L2-HOSTC-TO-BR52", "type": "GEANT PLUS", "status": "operational"}, {"id": 678451, "name": "SDX-L2-HOSTC-TO-BR51", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 842}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/0/6.1", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostC-to-Br51 ", "circuits": [{"id": 678451, "name": "SDX-L2-HOSTC-TO-BR51", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 919}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/0/6.2", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostD-to-Br51 ", "circuits": [{"id": 661742, "name": "SDX-L2-HOSTD-TO-BR51", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 920}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/0/6.3", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostC-to-Br52 ", "circuits": [{"id": 661923, "name": "SDX-L2-HOSTC-TO-BR52", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 927}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/0/6.4", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostD-to-Br52 ", "circuits": [{"id": 661479, "name": "SDX-L2-HOSTD-TO-BR52", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 932}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/0/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | Previously PSMP NETMON, not in use", "circuits": [], "snmp-index": 843}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL", "circuits": [{"id": 708203, "name": "PS-MIL2-IT-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 528}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-mil2-it-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160906", "circuits": [{"id": 708203, "name": "PS-MIL2-IT-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 903}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P6", "circuits": [], "snmp-index": 529}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/1.1", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2_PILOT-Br52-OF-P3_mil2   ", "circuits": [{"id": 661572, "name": "SDX-L2_PILOT-BR51-OF-P3_MIL2", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 935}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/1.1001", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE SDX-L2_PILOT ACCESS JRA1 #JRA1_SDX_L2_PILOT_VLAN1001 | PAR-BR51", "circuits": [{"id": 660448, "name": "JRA1_SDX_L2_PILOT_VLAN1001", "type": "L3-VPN", "status": "operational"}], "snmp-index": 937}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/1.1002", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE SDX-L2_PILOT ACCESS JRA1 #JRA1_SDX_L2_PILOT_VLAN1002 | PAR-BR52", "circuits": [{"id": 660558, "name": "JRA1_SDX_L2_PILOT_VLAN1002", "type": "L3-VPN", "status": "operational"}], "snmp-index": 938}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/1.1003", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE SDN-BOD_PILOT ACCESS JRA1 #JRA1_SDN_BOD_PILOT_BR53_VLAN1003 | SDN-BOD PILOT BR53", "circuits": [{"id": 661507, "name": "JRA1_SDN_BOD_PILOT_BR53_VLAN1003", "type": "L3-VPN", "status": "operational"}], "snmp-index": 939}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P9", "circuits": [], "snmp-index": 850}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P5", "circuits": [{"id": 661191, "name": "SDN-BOD-BR53-OF-6-HOST-G-ETH2", "type": "GEANT PLUS", "status": "operational"}, {"id": 661201, "name": "SDN-BOD-BR53-OF-1-HOST-G-ETH1", "type": "GEANT PLUS", "status": "operational"}, {"id": 661294, "name": "SDN-BOD-BR53-OF-7-HOST-G-ETH3", "type": "GEANT PLUS", "status": "operational"}, {"id": 661571, "name": "SDN-BOD-BR53-OF-8-HOST-G-ETH4", "type": "GEANT PLUS", "status": "operational"}, {"id": 661646, "name": "SDN-BOD-BR53-OF-10-HOST-H-ETH3", "type": "GEANT PLUS", "status": "operational"}, {"id": 661942, "name": "SDN-BOD-BR53-OF-2-HOST-H-ETH1", "type": "GEANT PLUS", "status": "operational"}, {"id": 661969, "name": "SDN-BOD-BR53-OF-11-HOST-H-ETH4", "type": "GEANT PLUS", "status": "operational"}, {"id": 662000, "name": "SDN-BOD-BR53-OF-9-HOST-H-ETH2", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 851}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/3.1", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2_PILOT-Br51-OF-P3_mil2  ", "circuits": [{"id": 661572, "name": "SDX-L2_PILOT-BR51-OF-P3_MIL2", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 944}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/3.1022", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-1-host-g-eth1", "circuits": [{"id": 661201, "name": "SDN-BOD-BR53-OF-1-HOST-G-ETH1", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 945}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/3.1023", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-6-host-g-eth2", "circuits": [{"id": 661191, "name": "SDN-BOD-BR53-OF-6-HOST-G-ETH2", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 946}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/3.1024", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-7-host-g-eth3", "circuits": [{"id": 661294, "name": "SDN-BOD-BR53-OF-7-HOST-G-ETH3", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 947}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/3.1025", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-8-host-g-eth4", "circuits": [{"id": 661571, "name": "SDN-BOD-BR53-OF-8-HOST-G-ETH4", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 948}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/3.1032", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-2-host-h-eth1", "circuits": [{"id": 661942, "name": "SDN-BOD-BR53-OF-2-HOST-H-ETH1", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 949}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/3.1033", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-9-host-h-eth2", "circuits": [{"id": 662000, "name": "SDN-BOD-BR53-OF-9-HOST-H-ETH2", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 950}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/3.1034", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-10-host-h-eth3", "circuits": [{"id": 661646, "name": "SDN-BOD-BR53-OF-10-HOST-H-ETH3", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 952}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/3.1035", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-11-host-h-eth4", "circuits": [{"id": 661969, "name": "SDN-BOD-BR53-OF-11-HOST-H-ETH4", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 954}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P8", "circuits": [], "snmp-index": 857}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P7", "circuits": [], "snmp-index": 859}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 3", "circuits": [], "snmp-index": 860}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/1/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 0", "circuits": [], "snmp-index": 861}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 1", "circuits": [], "snmp-index": 907}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/2/1", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 SRF0000001 | Patched to EX3400 xe-0/2/0", "circuits": [], "snmp-index": 908}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 2", "circuits": [], "snmp-index": 878}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P10", "circuits": [], "snmp-index": 864}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/2/4", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY PRIVATE GOOGLE P_AE12 SRF9930727", "circuits": [], "snmp-index": 898}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/2/5", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | OTEGlobe 1-4XPLWG5 ", "circuits": [], "snmp-index": 895}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/2/6", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 SRF0000001 | Patched to EX3400 xe-0/2/1", "circuits": [], "snmp-index": 899}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/2/7", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY PRIVATE GOOGLE P_AE12 SRF9930725", "circuits": [], "snmp-index": 896}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 909}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 910}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 900}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 901}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 902}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 904}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 905}, {"router": "mx1.mil2.it.geant.net", "name": "xe-1/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 912}, {"router": "mx1.mil2.it.geant.net", "name": "xe-2/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 572}, {"router": "mx1.mil2.it.geant.net", "name": "xe-2/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 573}, {"router": "mx1.mil2.it.geant.net", "name": "xe-2/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 574}, {"router": "mx1.mil2.it.geant.net", "name": "xe-2/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 575}, {"router": "mx1.mil2.it.geant.net", "name": "et-2/1/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER GARR P_AE10 SRF9926135 |", "circuits": [], "snmp-index": 965}, {"router": "mx1.mil2.it.geant.net", "name": "xe-2/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 580}, {"router": "mx1.mil2.it.geant.net", "name": "xe-2/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 581}, {"router": "mx1.mil2.it.geant.net", "name": "xe-2/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 582}, {"router": "mx1.mil2.it.geant.net", "name": "xe-2/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 583}, {"router": "mx1.mil2.it.geant.net", "name": "et-2/3/0", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 |", "circuits": [], "snmp-index": 966}, {"router": "mx1.mil2.it.geant.net", "name": "et-3/0/0", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Reserved for ACONET AP2", "circuits": [], "snmp-index": 634}, {"router": "mx1.mil2.it.geant.net", "name": "lt-3/2/10", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS_FOD SRF0000001 | Tunnel between R&E and IAS", "circuits": [], "snmp-index": 781}, {"router": "mx1.mil2.it.geant.net", "name": "lt-3/2/10.13", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FOD_R&E_ENDPOINT_MIL2_IT | FOD R&E endpoint", "circuits": [{"id": 710657, "name": "FOD_R&E_ENDPOINT_MIL2_IT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 786}, {"router": "mx1.mil2.it.geant.net", "name": "lt-3/2/10.31", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #TUNNEL_INTERFACE_20965_21320 | 20965_TO_21320_FOD IAS endpoint", "circuits": [{"id": 710654, "name": "TUNNEL_INTERFACE_20965_21320", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 787}, {"router": "mx1.mil2.it.geant.net", "name": "et-4/0/2", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1034}, {"router": "mx1.mil2.it.geant.net", "name": "et-4/0/5", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1033}, {"router": "mx1.mil2.it.geant.net", "name": "et-4/1/2", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1035}, {"router": "mx1.mil2.it.geant.net", "name": "et-4/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1037}, {"router": "mx1.mil2.it.geant.net", "name": "et-5/0/2", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1025}, {"router": "mx1.mil2.it.geant.net", "name": "et-5/0/5", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1026}, {"router": "mx1.mil2.it.geant.net", "name": "et-5/1/2", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1022}, {"router": "mx1.mil2.it.geant.net", "name": "et-5/1/5", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY PUBLIC MIX P_AE11 SRF9949654 | MIX ID: XCID202001-019", "circuits": [], "snmp-index": 1024}, {"router": "mx1.mil2.it.geant.net", "name": "et-10/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 795}, {"router": "mx1.mil2.it.geant.net", "name": "lt-10/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 877}, {"router": "mx1.mil2.it.geant.net", "name": "lt-10/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-mil2-it-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710676, "name": "BGPPEERING-MIL2-IT-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 885}, {"router": "mx1.mil2.it.geant.net", "name": "lt-10/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #MIL2-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 886}, {"router": "mx1.mil2.it.geant.net", "name": "xe-11/0/0", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER UOM SRF19046 | UOM AP", "circuits": [], "snmp-index": 1284}, {"router": "mx1.mil2.it.geant.net", "name": "xe-11/0/0.100", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER UOM #UOM_AP1 | ASN12046 | ", "circuits": [{"id": 661347, "name": "UOM_AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1340}, {"router": "mx1.mil2.it.geant.net", "name": "xe-11/0/0.333", "bundle": [], "bundle-parents": [], "description": "SRV_IAS CUSTOMER UOM #UOM_AP1_IAS IASGWS| ASN12046 | ", "circuits": [{"id": 661510, "name": "UOM_AP1_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 1341}, {"router": "mx1.mil2.it.geant.net", "name": "xe-11/0/1", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY CUSTOMER ARNES P_AE14 SRF19032 ", "circuits": [], "snmp-index": 1285}, {"router": "mx1.mil2.it.geant.net", "name": "xe-11/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1286}, {"router": "mx1.mil2.it.geant.net", "name": "xe-11/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1287}, {"router": "mx1.mil2.it.geant.net", "name": "et-11/1/0", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 SRF0000001 |", "circuits": [], "snmp-index": 1288}, {"router": "mx1.mil2.it.geant.net", "name": "xe-11/2/0", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY CUSTOMER ACONET P_ae18 AP_B SRF9942612 |ACONET AP2 DWDM LL-1", "circuits": [], "snmp-index": 1289}, {"router": "mx1.mil2.it.geant.net", "name": "xe-11/2/1", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY CUSTOMER ACONET P_ae18 AP_B SRF9912979 |ACONET AP2 DWDM LL-2", "circuits": [], "snmp-index": 1290}, {"router": "mx1.mil2.it.geant.net", "name": "xe-11/2/2", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY CUSTOMER ACONET P_ae18 AP_B SRF9942612 |ACONET AP2 DWDM LL-3", "circuits": [], "snmp-index": 1291}, {"router": "mx1.mil2.it.geant.net", "name": "xe-11/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1292}, {"router": "mx1.mil2.it.geant.net", "name": "et-11/3/0", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 SRF0000001 |", "circuits": [], "snmp-index": 1293}, {"router": "mx1.mil2.it.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-1/2/1", "xe-1/2/6"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx1-sw2 (ex3400)", "circuits": [], "snmp-index": 616}, {"router": "mx1.mil2.it.geant.net", "name": "ae1.103", "bundle": [], "bundle-parents": ["xe-1/2/1", "xe-1/2/6"], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #DCN_MANAGEMENT_MIL2_IT | DCN MANAGEMENT", "circuits": [{"id": 707587, "name": "DCN_MANAGEMENT_MIL2_IT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 717}, {"router": "mx1.mil2.it.geant.net", "name": "ae1.998", "bundle": [], "bundle-parents": ["xe-1/2/1", "xe-1/2/6"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-mil2-it| SW2-EX3400 MANAGEMENT", "circuits": [{"id": 707586, "name": "EX3400-MANAGEMENT-MIL2.IT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 718}, {"router": "mx1.mil2.it.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-1/0/2", "xe-1/0/5", "xe-1/2/5"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | ath-mil", "circuits": [], "snmp-index": 617}, {"router": "mx1.mil2.it.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-1/0/2", "xe-1/0/5", "xe-1/2/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH-MIL-IPTRUNK | ATH-MIL |", "circuits": [{"id": 708731, "name": "ATH-MIL-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 656}, {"router": "mx1.mil2.it.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-2/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mar-mil", "circuits": [], "snmp-index": 618}, {"router": "mx1.mil2.it.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-2/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAR_MIL2_IPTRUNK| MAR-MIL2 |  ", "circuits": [{"id": 708732, "name": "MAR_MIL2_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 767}, {"router": "mx1.mil2.it.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["et-11/1/0", "et-11/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE MIL2 SRF0000001 | lju-mil2  | ", "circuits": [], "snmp-index": 619}, {"router": "mx1.mil2.it.geant.net", "name": "ae4.0", "bundle": [], "bundle-parents": ["et-11/1/0", "et-11/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LJU_MIL2_IPTRUNK | LJU-MIL2 |", "circuits": [{"id": 708742, "name": "LJU_MIL2_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 796}, {"router": "mx1.mil2.it.geant.net", "name": "ae6", "bundle": [], "bundle-parents": ["et-4/0/2", "et-4/0/5", "et-4/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE MIL2 SRF0000001 | gen-mil2 | Coriant G30 300G", "circuits": [], "snmp-index": 621}, {"router": "mx1.mil2.it.geant.net", "name": "ae6.0", "bundle": [], "bundle-parents": ["et-4/0/2", "et-4/0/5", "et-4/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN_MIL2_IPTRUNK | MIL2-GEN |Coriant G30 300G", "circuits": [{"id": 708720, "name": "GEN_MIL2_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1117}, {"router": "mx1.mil2.it.geant.net", "name": "ae8", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5", "et-5/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE MIL2 SRF0000001 | mil2-vie  | Coriant G30 300G", "circuits": [], "snmp-index": 680}, {"router": "mx1.mil2.it.geant.net", "name": "ae8.0", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5", "et-5/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MIL2_VIE_IPTRUNK | MIL2-VIE |Coriant G30 300G", "circuits": [{"id": 708717, "name": "MIL2_VIE_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1123}, {"router": "mx1.mil2.it.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["et-2/1/0"], "description": "LAG CUSTOMER GARR SRF9923977 |", "circuits": [], "snmp-index": 682}, {"router": "mx1.mil2.it.geant.net", "name": "ae10.25", "bundle": [], "bundle-parents": ["et-2/1/0"], "description": "SRV_L2CIRCUIT CUSTOMER GARR UBUNTUNET #lon-mil2_ASI_BSC_to_Fucino_Ubuntunet-GARR_20008 |", "circuits": [{"id": 705891, "name": "LON-MIL2_ASI_BSC_TO_FUCINO_UBUNTUNET-GARR_20008", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1145}, {"router": "mx1.mil2.it.geant.net", "name": "ae10.111", "bundle": [], "bundle-parents": ["et-2/1/0"], "description": "SRV_L3VPN CUSTOMER GARR #GARR-AP1-LHCONE | ASN137", "circuits": [{"id": 661882, "name": "GARR-AP1-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 697}, {"router": "mx1.mil2.it.geant.net", "name": "ae10.333", "bundle": [], "bundle-parents": ["et-2/1/0"], "description": "SRV_IAS CUSTOMER GARR #GARR-AP1-IAS IASPS | ASN137 ", "circuits": [{"id": 660627, "name": "GARR-AP1-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 770}, {"router": "mx1.mil2.it.geant.net", "name": "ae10.667", "bundle": [], "bundle-parents": ["et-2/1/0"], "description": "SRV_CLS CUSTOMER GARR #GARR-AP1-CLS |ASN137 | ", "circuits": [{"id": 661915, "name": "GARR-AP1-CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 738}, {"router": "mx1.mil2.it.geant.net", "name": "ae10.1000", "bundle": [], "bundle-parents": ["et-2/1/0"], "description": "SRV_GLOBAL CUSTOMER GARR #GARR-AP1 | ASN137 | ", "circuits": [{"id": 661320, "name": "GARR-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 687}, {"router": "mx1.mil2.it.geant.net", "name": "ae10.1001", "bundle": [], "bundle-parents": ["et-2/1/0"], "description": "SRV_MDVPN CUSTOMER GARR #GARR_BGP_LU_CoC_1 | MD VPN CoC #1 - GARR", "circuits": [{"id": 661246, "name": "GARR_BGP_LU_COC_1", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 712}, {"router": "mx1.mil2.it.geant.net", "name": "ae10.4086", "bundle": [], "bundle-parents": ["et-2/1/0"], "description": "SRV_GCS CUSTOMER GARR  #GARR_UDMilano_ExpressRoute_Vlan4086 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707643, "name": "GARR-UDMILANO-EXPRESSROUTE-VLAN4086", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 721}, {"router": "mx1.mil2.it.geant.net", "name": "ae10.4088", "bundle": [], "bundle-parents": ["et-2/1/0"], "description": "SRV_GCS CUSTOMER GARR  #GARR_ROMA_ExpressRoute_VLAN4088 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707295, "name": "GARR-ROMA-EXPRESSROUTE-VLAN4088", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 664}, {"router": "mx1.mil2.it.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["et-5/1/5"], "description": "LAG PUBLIC MIX SRF9929723 |", "circuits": [], "snmp-index": 683}, {"router": "mx1.mil2.it.geant.net", "name": "ae11.0", "bundle": [], "bundle-parents": ["et-5/1/5"], "description": "SRV_IAS PUBLIC MIX #IX_Peerings_in_MIX |", "circuits": [{"id": 708323, "name": "IX_PEERINGS_IN_MIX", "type": "IP PEERING - NON R&E (PUBLIC)", "status": "operational"}], "snmp-index": 731}, {"router": "mx1.mil2.it.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-1/2/4", "xe-1/2/7"], "description": "LAG PRIVATE GOOGLE SRF9931047", "circuits": [], "snmp-index": 684}, {"router": "mx1.mil2.it.geant.net", "name": "ae12.0", "bundle": [], "bundle-parents": ["xe-1/2/4", "xe-1/2/7"], "description": "SRV_IAS PRIVATE GOOGLE #GOOGLE_15169_IT | ASN15169", "circuits": [{"id": 708198, "name": "GOOGLE_15169_IT", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 766}, {"router": "mx1.mil2.it.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["xe-1/0/1"], "description": "LAG CUSTOMER RASH SRF9938973 | ", "circuits": [], "snmp-index": 685}, {"router": "mx1.mil2.it.geant.net", "name": "ae13.100", "bundle": [], "bundle-parents": ["xe-1/0/1"], "description": "SRV_GLOBAL CUSTOMER RASH #RASH_AP1|ASN57961| ", "circuits": [{"id": 661325, "name": "RASH_AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 848}, {"router": "mx1.mil2.it.geant.net", "name": "ae13.333", "bundle": [], "bundle-parents": ["xe-1/0/1"], "description": "SRV_IAS CUSTOMER RASH #RASH_AP_IAS IASGWS | ASN57961 | default route", "circuits": [{"id": 661308, "name": "RASH_AP_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 865}, {"router": "mx1.mil2.it.geant.net", "name": "ae14", "bundle": [], "bundle-parents": ["xe-11/0/1"], "description": "LAG CUSTOMER ARNES SRF19032 | ARNES AP3 LAG", "circuits": [], "snmp-index": 688}, {"router": "mx1.mil2.it.geant.net", "name": "ae14.100", "bundle": [], "bundle-parents": ["xe-11/0/1"], "description": "SRV_GLOBAL CUSTOMER ARNES #ARNES-AP3 | ASN2107 | ARNES AP3 ", "circuits": [{"id": 661227, "name": "ARNES-AP3", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1303}, {"router": "mx1.mil2.it.geant.net", "name": "ae14.333", "bundle": [], "bundle-parents": ["xe-11/0/1"], "description": "SRV_IAS CUSTOMER ARNES #ARNES-AP3-IAS IASPS | ASN2107 ", "circuits": [{"id": 661440, "name": "ARNES-AP3-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 1302}, {"router": "mx1.mil2.it.geant.net", "name": "ae18", "bundle": [], "bundle-parents": ["xe-11/2/0", "xe-11/2/1", "xe-11/2/2"], "description": "LAG CUSTOMER ACONET AP_B SRF9943109|", "circuits": [], "snmp-index": 692}, {"router": "mx1.mil2.it.geant.net", "name": "ae18.52", "bundle": [], "bundle-parents": ["xe-11/2/0", "xe-11/2/1", "xe-11/2/2"], "description": "SRV_IAS CUSTOMER ACONET #ACONET-AP2-IAS IASPS | ASN1853 ", "circuits": [{"id": 661759, "name": "ACONET_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 1259}, {"router": "mx1.mil2.it.geant.net", "name": "ae18.53", "bundle": [], "bundle-parents": ["xe-11/2/0", "xe-11/2/1", "xe-11/2/2"], "description": "SRV_GLOBAL CUSTOMER ACONET #ACONET-AP2| ASN1853 | ", "circuits": [{"id": 661508, "name": "ACONET-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1255}, {"router": "mx1.mil2.it.geant.net", "name": "ae18.55", "bundle": [], "bundle-parents": ["xe-11/2/0", "xe-11/2/1", "xe-11/2/2"], "description": "SRV_GLOBAL CUSTOMER ACONET #ACONET-AP2-EUMETCAST | ASN1853 | mcast ", "circuits": [{"id": 661509, "name": "ACONET-AP2-MULTICAST", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1253}, {"router": "mx1.mil2.it.geant.net", "name": "ae18.667", "bundle": [], "bundle-parents": ["xe-11/2/0", "xe-11/2/1", "xe-11/2/2"], "description": "SRV_CLS CUSTOMER ACONET #ACONET-AP2-CLS|ASN1853 | ", "circuits": [{"id": 661319, "name": "ACONET_AP2_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1258}, {"router": "mx1.mil2.it.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-mil2-it-mgmt-vrf-vlan999|", "circuits": [], "snmp-index": 651}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/0", "bundle": [], "bundle-parents": [], "description": "SRX-1 To Switch Cluster ge-0/0/0", "circuits": [], "snmp-index": 513}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/0.10", "bundle": [], "bundle-parents": [], "description": "Infrastructure Management", "circuits": [], "snmp-index": 553}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/0.50", "bundle": [], "bundle-parents": [], "description": "SRX-1 to FW WAN (VLAN 50)", "circuits": [], "snmp-index": 554}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/1", "bundle": [], "bundle-parents": [], "description": "To SRX2", "circuits": [], "snmp-index": 514}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 516}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/3", "bundle": [], "bundle-parents": [], "description": "SURFnet VLAN 100 - for Link to GEANT IT VRF via mx1.ams - Surfnet Service ID: 5836", "circuits": [], "snmp-index": 517}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/4", "bundle": [], "bundle-parents": [], "description": "To Switch Cluster vme.0", "circuits": [], "snmp-index": 518}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 519}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 520}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 521}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 523}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 524}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/10", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 525}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/11", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 527}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/12", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 528}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/13", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 529}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/14", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 530}, {"router": "srx1.am.office.geant.net", "name": "ge-0/0/15", "bundle": [], "bundle-parents": [], "description": "Surfnet Primary - Service ID: 3287IP1", "circuits": [], "snmp-index": 531}, {"router": "srx1.am.office.geant.net", "name": "fxp0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE MANAGEMENT | AM SRX-1 Router", "circuits": [], "snmp-index": 1}, {"router": "srx1.am.office.geant.net", "name": "lo0.0", "bundle": [], "bundle-parents": [], "description": "Router Loopback", "circuits": [], "snmp-index": 16}, {"router": "mx1.pra.cz.geant.net", "name": "xe-0/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 584}, {"router": "mx1.pra.cz.geant.net", "name": "xe-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 585}, {"router": "mx1.pra.cz.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 586}, {"router": "mx1.pra.cz.geant.net", "name": "xe-0/1/1", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY PUBLIC NIX P_AE12 SRF9934721 | CESNET ID: GEANT-to-NIX.CZ NIX.CZ ID: GEANT", "circuits": [], "snmp-index": 587}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 590}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | PRA TAAS Control trunk", "circuits": [], "snmp-index": 591}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/1.250", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE GTS #TAAS_GTS_CONTROL-1 | TAAS GTS", "circuits": [{"id": 661951, "name": "TAAS_GTS_CONTROL-1", "type": "GTS", "status": "operational"}], "snmp-index": 738}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/1.251", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE GTS #TAAS_GTS_CONTROL-2 | TAAS GTS", "circuits": [{"id": 661377, "name": "TAAS_GTS_CONTROL-2", "type": "GTS", "status": "operational"}], "snmp-index": 734}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/1.252", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE GTS #TAAS_GTS_GATE | TAAS GTS", "circuits": [{"id": 661744, "name": "TAAS_GTS_GATE", "type": "GTS", "status": "operational"}], "snmp-index": 730}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS GTS SRF0000001 | IDRAC CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180315", "circuits": [{"id": 708274, "name": "GTS_IDRAC_PRA_CZ", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 592}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS GTS #GTS_IDRAC_PRA_CZ | IDRAC CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180315", "circuits": [{"id": 708274, "name": "GTS_IDRAC_PRA_CZ", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1034}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | MGMT interface for corsa", "circuits": [], "snmp-index": 593}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | OPENFLOW port for virtual switch OF control", "circuits": [], "snmp-index": 594}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS | VPLS Internet Access | To GTS.SW2 ge-0/1/2", "circuits": [], "snmp-index": 595}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS | BMS Internet Access | To GTS.SW2 ge-0/1/3", "circuits": [], "snmp-index": 596}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915893 | PRA01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 597}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Reserved For GTS BOD", "circuits": [], "snmp-index": 598}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | ", "circuits": [], "snmp-index": 599}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915895 | PRA01-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 601}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP", "circuits": [{"id": 708257, "name": "PS-PRA-CZ-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 602}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-pra-cz-owamp | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160706", "circuits": [{"id": 708257, "name": "PS-PRA-CZ-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 637}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS GTS SRF0000001 | SRV MGMT CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180315", "circuits": [{"id": 708218, "name": "GTS_MANAGEMENT_PRA_CZ", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 603}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS GTS #GTS_MANAGEMENT_PRA_CZ | SRV MGMT CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180315", "circuits": [{"id": 708218, "name": "GTS_MANAGEMENT_PRA_CZ", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1035}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access | To GTS EX P22", "circuits": [], "snmp-index": 606}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access | To GTS EX P23", "circuits": [], "snmp-index": 607}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Reserved For GTS BOD", "circuits": [], "snmp-index": 608}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | pra cz POP LAN", "circuits": [], "snmp-index": 609}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-pra-cz-DRAC | HADES DRAC", "circuits": [{"id": 661728, "name": "HADES-PRA-CZ-DRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 723}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP_PRA_CZ | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", "circuits": [{"id": 661678, "name": "OWAMP_PRA_CZ", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 724}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-pra-cz-idrac |perfSONAR iDRAC", "circuits": [{"id": 661481, "name": "PS-PRA-CZ-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 642}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-pra-cz-management |perfSONAR MGMT", "circuits": [{"id": 661261, "name": "PS-PRA-CZ-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 644}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.60", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-pra-cz| KVMoIP", "circuits": [{"id": 661677, "name": "KVMOIP-PRA-CZ", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 726}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.80", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-simple-lookup-service | Perfsonar Simple Lookup Service", "circuits": [{"id": 661605, "name": "PS-SIMPLE-LOOKUP-SERVICE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 614}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.170", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ipcamera-pra-cz| IP cameras", "circuits": [{"id": 660561, "name": "IPCAMERA-PRA-CZ", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 712}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.301", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #PRA_Groove_1 | PRA Groove 1  ", "circuits": [{"id": 661693, "name": "PRA_GROOVE_1", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 822}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.302", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #PRA_Groove_1_Management | PRA Groove 1 Direct Management", "circuits": [{"id": 661716, "name": "PRA_GROOVE_1_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 824}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.401", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #PRA_Groove_2 | PRA Groove 2  ", "circuits": [{"id": 661918, "name": "PRA_GROOVE_2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 825}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.402", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #PRA_Groove_2_Management | PRA Groove 2 Direct Management", "circuits": [{"id": 660554, "name": "PRA_GROOVE_2_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 826}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.991", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access #PRA_Groove | PRA Groove G30", "circuits": [{"id": 707222, "name": "PRA_GROOVE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 843}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.1021", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS  #BOD_SDN_PILOT_HOST_ETH0_PRAGUE | BOD SDN PILOT HOST-F ETH0", "circuits": [{"id": 661493, "name": "BOD_SDN_PILOT_HOST_ETH0_PRAGUE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 823}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.1022", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS  #BOD_SDN_PILOT_HOST_ETH1_PRAGUE | BOD SDN PILOT HOST-F ETH1", "circuits": [{"id": 661916, "name": "BOD_SDN_PILOT_HOST_ETH1_PRAGUE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 806}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.1023", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS  #BOD_SDN_PILOT_HOST_ETH2_PRAGUE | BOD SDN PILOT HOST-F ETH2", "circuits": [{"id": 661779, "name": "BOD_SDN_PILOT_HOST_ETH2_PRAGUE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 807}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.1024", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS  #BOD_SDN_PILOT_HOST_ETH3_PRAGUE | BOD SDN PILOT HOST-F ETH3", "circuits": [{"id": 661914, "name": "BOD_SDN_PILOT_HOST_ETH3_PRAGUE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 808}, {"router": "mx1.pra.cz.geant.net", "name": "ge-0/3/9.1025", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS  #BOD_SDN_PILOT_HOST_ETH4_PRAGUE | BOD SDN PILOT HOST-F ETH4", "circuits": [{"id": 660722, "name": "BOD_SDN_PILOT_HOST_ETH4_PRAGUE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 809}, {"router": "mx1.pra.cz.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SERVER 9 | link to GTS SERVER 9", "circuits": [], "snmp-index": 721}, {"router": "mx1.pra.cz.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SERVER 10 | link to GTS SERVER 10", "circuits": [], "snmp-index": 722}, {"router": "mx1.pra.cz.geant.net", "name": "xe-1/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SERVER 11 | link to GTS SERVER 11", "circuits": [], "snmp-index": 727}, {"router": "mx1.pra.cz.geant.net", "name": "xe-1/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SERVER 12 | link to GTS SERVER 12", "circuits": [], "snmp-index": 729}, {"router": "mx1.pra.cz.geant.net", "name": "et-1/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 740}, {"router": "mx1.pra.cz.geant.net", "name": "xe-1/2/0", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY PUBLIC NIX P_AE12 SRF9943415 | ", "circuits": [], "snmp-index": 741}, {"router": "mx1.pra.cz.geant.net", "name": "xe-1/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 742}, {"router": "mx1.pra.cz.geant.net", "name": "xe-1/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 749}, {"router": "mx1.pra.cz.geant.net", "name": "xe-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 750}, {"router": "mx1.pra.cz.geant.net", "name": "et-1/3/0", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER CESNET P_AE11 SRF9922157| ", "circuits": [], "snmp-index": 751}, {"router": "mx1.pra.cz.geant.net", "name": "lt-1/3/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 852}, {"router": "mx1.pra.cz.geant.net", "name": "lt-1/3/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-pra-cz-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710677, "name": "BGPPEERING-PRA-CZ-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 853}, {"router": "mx1.pra.cz.geant.net", "name": "lt-1/3/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #PRA-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 854}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/0/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL", "circuits": [{"id": 708105, "name": "PS-PRA-CZ-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 568}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/0/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-pra-cz-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160706", "circuits": [{"id": 708105, "name": "PS-PRA-CZ-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 634}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/0/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P4", "circuits": [], "snmp-index": 569}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P5", "circuits": [], "snmp-index": 570}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/0/2.1022", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-1_pra ", "circuits": [{"id": 661916, "name": "BOD_SDN_PILOT_HOST_ETH1_PRAGUE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 812}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/0/2.1023", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-4  ", "circuits": [{"id": 661779, "name": "BOD_SDN_PILOT_HOST_ETH2_PRAGUE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1007}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/0/2.1024", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-5  ", "circuits": [{"id": 661914, "name": "BOD_SDN_PILOT_HOST_ETH3_PRAGUE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1008}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/0/2.1025", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-6  ", "circuits": [{"id": 660722, "name": "BOD_SDN_PILOT_HOST_ETH4_PRAGUE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1009}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P6", "circuits": [], "snmp-index": 571}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/0/3.1003", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS JRA1 #JRA1_SDN_BOD_PILOT_BR53_pra | SDN-BOD PILOT BR53", "circuits": [{"id": 661729, "name": "JRA1_SDN_BOD_PILOT_BR53_PRA", "type": "L3-VPN", "status": "operational"}], "snmp-index": 805}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P7", "circuits": [], "snmp-index": 572}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/1/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P8", "circuits": [], "snmp-index": 573}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/1/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P9", "circuits": [], "snmp-index": 574}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 575}, {"router": "mx1.pra.cz.geant.net", "name": "lt-2/2/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 |", "circuits": [], "snmp-index": 700}, {"router": "mx1.pra.cz.geant.net", "name": "lt-2/2/0.12", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 | MDVPN CoC, GN PE to VPN-Proxy for BGP-LU", "circuits": [], "snmp-index": 705}, {"router": "mx1.pra.cz.geant.net", "name": "lt-2/2/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #GEANT_IBGP_Peering-prague| GN PE to VPN-Proxy for IBGP ", "circuits": [{"id": 710685, "name": "GEANT_IBGP_PEERING-PRAGUE", "type": "MD-VPN (INTERNAL)", "status": "operational"}], "snmp-index": 706}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 576}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 577}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 578}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 579}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P10", "circuits": [], "snmp-index": 580}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 581}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | SPARE 10GB PORT CORSA P12", "circuits": [], "snmp-index": 582}, {"router": "mx1.pra.cz.geant.net", "name": "xe-2/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | ", "circuits": [], "snmp-index": 583}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/0/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 0", "circuits": [], "snmp-index": 736}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/0/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 1", "circuits": [], "snmp-index": 737}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 2", "circuits": [], "snmp-index": 747}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 3", "circuits": [], "snmp-index": 748}, {"router": "mx1.pra.cz.geant.net", "name": "et-3/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 754}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | link to GTS SERVER 8", "circuits": [], "snmp-index": 758}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | AMS GTS Server #5", "circuits": [], "snmp-index": 763}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/1.13", "bundle": [], "bundle-parents": [], "description": "GTS_link|PR-2faca91395", "circuits": [{"id": 707235, "name": "HA-F3CE2B171F", "type": "GTS", "status": "operational"}], "snmp-index": 1000}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | AMS GTS Server #6", "circuits": [], "snmp-index": 767}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/2.11", "bundle": [], "bundle-parents": [], "description": "GTS_link|PR-f51dbe7574", "circuits": [], "snmp-index": 1066}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/2.12", "bundle": [], "bundle-parents": [], "description": "GTS_link|PR-0ef05e7f67", "circuits": [{"id": 707197, "name": "LO-0309673A4D", "type": "GTS", "status": "operational"}], "snmp-index": 1068}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/2.13", "bundle": [], "bundle-parents": [], "description": "GTS_link|PR-f51dbe7574", "circuits": [], "snmp-index": 1002}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/2.14", "bundle": [], "bundle-parents": [], "description": "GTS_link|PR-5a2a216a4c", "circuits": [{"id": 707233, "name": "PA-B267CA1B21", "type": "GTS", "status": "operational"}], "snmp-index": 1072}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/2.15", "bundle": [], "bundle-parents": [], "description": "GTS_link|PR-d7864f21d2", "circuits": [{"id": 711468, "name": "HA-41C6B9E757", "type": "GTS", "status": "operational"}], "snmp-index": 1073}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/2.19", "bundle": [], "bundle-parents": [], "description": "GTS_link|PR-e1b2e32559", "circuits": [], "snmp-index": 836}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/2.20", "bundle": [], "bundle-parents": [], "description": "GTS_link|PR-e1b2e32559", "circuits": [], "snmp-index": 837}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/2.21", "bundle": [], "bundle-parents": [], "description": "GTS_link|PR-0961c3acc2", "circuits": [{"id": 706924, "name": "HA-483A058D58", "type": "GTS", "status": "operational"}], "snmp-index": 835}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/2.22", "bundle": [], "bundle-parents": [], "description": "GTS_link|PR-370f033602", "circuits": [{"id": 706957, "name": "HA-DD3BB853C8", "type": "GTS", "status": "operational"}], "snmp-index": 838}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 7 (BMS)", "circuits": [], "snmp-index": 768}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/3.12", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #lon2_pra-WP6-GTS_20064 |", "circuits": [{"id": 678790, "name": "HAM_LON2-WP6-GTS_20064", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 842}, {"router": "mx1.pra.cz.geant.net", "name": "xe-3/2/3.16", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #ham_pra-WP6-GTS_21010 |", "circuits": [{"id": 706454, "name": "HAM_PRA-WP6-GTS_21010", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 839}, {"router": "mx1.pra.cz.geant.net", "name": "et-3/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Reserved for Pavle JRA2T4 NetMon", "circuits": [], "snmp-index": 769}, {"router": "mx1.pra.cz.geant.net", "name": "et-5/0/2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 814}, {"router": "mx1.pra.cz.geant.net", "name": "et-5/0/5", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 815}, {"router": "mx1.pra.cz.geant.net", "name": "et-5/1/2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 816}, {"router": "mx1.pra.cz.geant.net", "name": "et-5/1/5", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | CESNET AP1 migration", "circuits": [], "snmp-index": 820}, {"router": "mx1.pra.cz.geant.net", "name": "et-7/0/2", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 915}, {"router": "mx1.pra.cz.geant.net", "name": "et-7/0/5", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 916}, {"router": "mx1.pra.cz.geant.net", "name": "et-7/1/2", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 917}, {"router": "mx1.pra.cz.geant.net", "name": "et-7/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 918}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 931}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 932}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 933}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 934}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 935}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 936}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 937}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 938}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 939}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 940}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 947}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 941}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 943}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 944}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/1/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 945}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 946}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 948}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 949}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 950}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 951}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 952}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 954}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 955}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 956}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 957}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 958}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 959}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 960}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 961}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 962}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 963}, {"router": "mx1.pra.cz.geant.net", "name": "xe-8/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 964}, {"router": "mx1.pra.cz.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5", "et-5/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE PRA SRF0000001 | pra-vie  | Coriant G30 300G", "circuits": [], "snmp-index": 985}, {"router": "mx1.pra.cz.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-5/0/2", "et-5/0/5", "et-5/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #PRA_VIE_IPTRUNK | PRA-VIE |Coriant G30 300G", "circuits": [{"id": 708749, "name": "PRA_VIE_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 986}, {"router": "mx1.pra.cz.geant.net", "name": "ae8", "bundle": [], "bundle-parents": ["et-7/0/2", "et-7/0/5", "et-7/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE PRA SRF0000001 | fra-pra  | Coriant G30 300G", "circuits": [], "snmp-index": 990}, {"router": "mx1.pra.cz.geant.net", "name": "ae8.0", "bundle": [], "bundle-parents": ["et-7/0/2", "et-7/0/5", "et-7/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA_PRA_IPTRUNK | PRA-FRA |Coriant G30 300G", "circuits": [{"id": 708747, "name": "FRA_PRA_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 991}, {"router": "mx1.pra.cz.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["et-1/3/0"], "description": "LAG CUSTOMER CESNET SRF9927551 | CESNET AP", "circuits": [], "snmp-index": 669}, {"router": "mx1.pra.cz.geant.net", "name": "ae11.111", "bundle": [], "bundle-parents": ["et-1/3/0"], "description": "SRV_L3VPN CUSTOMER CESNET #CESNET_AP1_LHCONE | ASN2852", "circuits": [{"id": 661297, "name": "CESNET_AP1_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 772}, {"router": "mx1.pra.cz.geant.net", "name": "ae11.333", "bundle": [], "bundle-parents": ["et-1/3/0"], "description": "SRV_IAS CUSTOMER CESNET #CESNET_AP1_IAS IASPS | ASN2852 ", "circuits": [{"id": 661262, "name": "CESNET_AP1_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 623}, {"router": "mx1.pra.cz.geant.net", "name": "ae11.600", "bundle": [], "bundle-parents": ["et-1/3/0"], "description": "SRV_GLOBAL CUSTOMER CESNET #CESNET_AP1 | ASN2852 | ", "circuits": [{"id": 661727, "name": "CESNET_AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 636}, {"router": "mx1.pra.cz.geant.net", "name": "ae11.667", "bundle": [], "bundle-parents": ["et-1/3/0"], "description": "SRV_CLS CUSTOMER CESNET #CESNET_AP_CLS|ASN2852 | ", "circuits": [{"id": 661548, "name": "CESNET_AP_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 615}, {"router": "mx1.pra.cz.geant.net", "name": "ae11.1700", "bundle": [], "bundle-parents": ["et-1/3/0"], "description": "SRV_GLOBAL CUSTOMER CESNET P_ae11 SRF0000001| CESnet NSI range - GCS", "circuits": [], "snmp-index": 1102}, {"router": "mx1.pra.cz.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-1/2/0"], "description": "LAG PUBLIC NIX SRF9934393 |", "circuits": [], "snmp-index": 670}, {"router": "mx1.pra.cz.geant.net", "name": "ae12.0", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-1/2/0"], "description": "SRV_IAS PUBLIC NIX #IX_Peerings_in_NIX |", "circuits": [{"id": 708283, "name": "IX_PEERINGS_IN_NIX", "type": "IP PEERING - NON R&E (PUBLIC)", "status": "operational"}], "snmp-index": 771}, {"router": "mx1.pra.cz.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 868}, {"router": "mx1.pra.cz.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-pra-cz-mgmt-vrf-vlan999|", "circuits": [], "snmp-index": 653}, {"router": "mx1.pra.cz.geant.net", "name": "lt-2/2/0.21", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF9927527 | VPN-Proxy to GEANT PE for BGP-LU peering", "circuits": [], "snmp-index": 707}, {"router": "mx1.pra.cz.geant.net", "name": "lt-2/2/0.31", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF??? | VPN-Proxy to GEANT PE for IBGP", "circuits": [], "snmp-index": 708}, {"router": "mx1.pra.cz.geant.net", "name": "ae11.360", "bundle": [], "bundle-parents": ["et-1/3/0"], "description": "SRV_MDVPN CUSTOMER CESNET #CESNET-GN-PRACDE-VPN-Proxy-Prague-L3VPN | PRACE VPN-Proxy to NREN CE", "circuits": [{"id": 709656, "name": "CESNET-GN-PRACE-VPN-PROXY-PRAGUE-L3VPN", "type": "MD-VPN (PROXY)", "status": "operational"}], "snmp-index": 803}, {"router": "mx1.pra.cz.geant.net", "name": "ae11.601", "bundle": [], "bundle-parents": ["et-1/3/0"], "description": "SRV_MDVPN CUSTOMER CESNET #CESnet-GN-XiFi-VPN-Proxy-Prague-L3VPN| VPN-Proxy to NREN CE", "circuits": [], "snmp-index": 690}, {"router": "mx1.poz.pl.geant.net", "name": "xe-0/0/0", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | LITNET ID: CBF - Geant_Kaunas-Poznan_2", "circuits": [], "snmp-index": 574}, {"router": "mx1.poz.pl.geant.net", "name": "xe-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 575}, {"router": "mx1.poz.pl.geant.net", "name": "xe-0/1/0", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | LITNET ID: CBF - Geant_Kaunas-Poznan_3", "circuits": [], "snmp-index": 576}, {"router": "mx1.poz.pl.geant.net", "name": "xe-0/1/1", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | LITNET ID: CBF - Geant_Kaunas-Poznan_4 ", "circuits": [], "snmp-index": 577}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN | poz pl POP LAN", "circuits": [{"id": 661258, "name": "RARE_P4_B1-POZ", "type": "L2SERVICES", "status": "operational"}], "snmp-index": 578}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/0.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-poz-pl-DRAC | HADES DRAC", "circuits": [{"id": 662001, "name": "HADES-POZ-PL-DRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 610}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/0.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP_POZ_PL | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150806", "circuits": [{"id": 661926, "name": "OWAMP_POZ_PL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 649}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/0.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-poz-pl-idrac |perfSONAR iDRAC", "circuits": [{"id": 661236, "name": "PS-POZ-PL-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 672}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/0.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-poz-pl-management |perfSONAR MGMT", "circuits": [{"id": 661519, "name": "PS-POZ-PL-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 673}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/0.301", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE | POZ Groove 1", "circuits": [], "snmp-index": 796}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/0.3005", "bundle": [], "bundle-parents": [], "description": "SRV_VPLS INFRASTRUCTURE VLAN3005 #RARE_P4_B1-POZ | RARE P4 b1.poz MGMT CONTACT: mian.usman@geant.org IMPLEMENTED: 20200116", "circuits": [{"id": 661258, "name": "RARE_P4_B1-POZ", "type": "L2SERVICES", "status": "operational"}], "snmp-index": 710}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 579}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9926075 | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150806", "circuits": [], "snmp-index": 580}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP", "circuits": [{"id": 708196, "name": "PS-POZ-PL-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 581}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-poz-pl-owamp | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160906", "circuits": [{"id": 708196, "name": "PS-POZ-PL-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 707}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 582}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 583}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 584}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 585}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 586}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 587}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 588}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 589}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 590}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 591}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 592}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 593}, {"router": "mx1.poz.pl.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE |", "circuits": [], "snmp-index": 594}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER BASNET SRF9921827 | BASNET-AP-LL", "circuits": [], "snmp-index": 558}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/0/0.100", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER BASNET #BASNET-AP1 | ASN21274 | ", "circuits": [{"id": 661600, "name": "BASNET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 624}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/0/0.333", "bundle": [], "bundle-parents": [], "description": "SRV_IAS CUSTOMER BASNET #BASNET-AP-IAS IASPS | ASN21274 ", "circuits": [{"id": 661373, "name": "BASNET-AP-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 625}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL", "circuits": [{"id": 708161, "name": "PS-POZ-PL-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 559}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/0/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-poz-pl-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160906", "circuits": [{"id": 708161, "name": "PS-POZ-PL-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 708}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 560}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/0/3", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER PIONIER SRF9912141 | PIONIER MD-VPN", "circuits": [], "snmp-index": 561}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 562}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 563}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 564}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 565}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | New Leased Span Frankfurt-Poznan", "circuits": [], "snmp-index": 566}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | New Leased Span Poznan-Vienna", "circuits": [], "snmp-index": 567}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 568}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 569}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 570}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 571}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/3/2", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER PIONIER SRF9915527 | Connection to Pionier Project Switch", "circuits": [], "snmp-index": 572}, {"router": "mx1.poz.pl.geant.net", "name": "xe-1/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 573}, {"router": "mx1.poz.pl.geant.net", "name": "xe-2/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 727}, {"router": "mx1.poz.pl.geant.net", "name": "xe-2/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 728}, {"router": "mx1.poz.pl.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 729}, {"router": "mx1.poz.pl.geant.net", "name": "xe-2/1/1", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | LITNET ID: CBF - Geant_Kaunas-Poznan_1", "circuits": [], "snmp-index": 730}, {"router": "mx1.poz.pl.geant.net", "name": "xe-3/0/0", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-0", "circuits": [], "snmp-index": 749}, {"router": "mx1.poz.pl.geant.net", "name": "xe-3/0/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #bud-poz_RARE_P4_9951383 | RARE P4 TESTBED", "circuits": [{"id": 708292, "name": "BUD-POZ_RARE_P4_9951383", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 799}, {"router": "mx1.poz.pl.geant.net", "name": "xe-3/0/1", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-1", "circuits": [], "snmp-index": 750}, {"router": "mx1.poz.pl.geant.net", "name": "xe-3/0/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #AMS-POZ-RARE-P4-9951379 | RARE P4 TESTBED", "circuits": [{"id": 708243, "name": "AMS-POZ-RARE-P4-9951379", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 798}, {"router": "mx1.poz.pl.geant.net", "name": "xe-3/0/2", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-2", "circuits": [], "snmp-index": 751}, {"router": "mx1.poz.pl.geant.net", "name": "xe-3/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 752}, {"router": "mx1.poz.pl.geant.net", "name": "et-3/1/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | Level3 ID: BDHQ5314", "circuits": [], "snmp-index": 753}, {"router": "mx1.poz.pl.geant.net", "name": "xe-3/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 754}, {"router": "mx1.poz.pl.geant.net", "name": "xe-3/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 755}, {"router": "mx1.poz.pl.geant.net", "name": "xe-3/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 756}, {"router": "mx1.poz.pl.geant.net", "name": "xe-3/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 763}, {"router": "mx1.poz.pl.geant.net", "name": "et-3/3/0", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER PIONIER P_AE11 SRF9937611 |", "circuits": [], "snmp-index": 764}, {"router": "mx1.poz.pl.geant.net", "name": "lt-3/3/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 662}, {"router": "mx1.poz.pl.geant.net", "name": "lt-3/3/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-poz-pl-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710660, "name": "BGPPEERING-POZ-PL-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 663}, {"router": "mx1.poz.pl.geant.net", "name": "lt-3/3/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #POZ-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 664}, {"router": "mx1.poz.pl.geant.net", "name": "et-4/0/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | ", "circuits": [], "snmp-index": 748}, {"router": "mx1.poz.pl.geant.net", "name": "et-5/0/0", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE | BACKBONE P_AE3 SRF0000001 | RETN ID: WL-904687-1.AT.VIE.IRX-PL.POZ.BND-100G", "circuits": [], "snmp-index": 814}, {"router": "mx1.poz.pl.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["et-3/1/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | fra-poz", "circuits": [], "snmp-index": 598}, {"router": "mx1.poz.pl.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["et-3/1/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-POZ-IPTRUNK | FRA-POZ |  ", "circuits": [{"id": 708745, "name": "FRA-POZ-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 627}, {"router": "mx1.poz.pl.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | kie-poz", "circuits": [], "snmp-index": 797}, {"router": "mx1.poz.pl.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KIE_POZ_IPTRUNK | KIE-POZ |  ", "circuits": [], "snmp-index": 800}, {"router": "mx1.poz.pl.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-5/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | poz-vie", "circuits": [], "snmp-index": 601}, {"router": "mx1.poz.pl.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-5/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #POZ_VIE_IPTRUNK | POZ-VIE |  ", "circuits": [{"id": 708710, "name": "POZ_VIE_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 777}, {"router": "mx1.poz.pl.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-0/1/1", "xe-2/1/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | kau-poz", "circuits": [], "snmp-index": 603}, {"router": "mx1.poz.pl.geant.net", "name": "ae5.0", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-0/1/1", "xe-2/1/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU_POZ_IPTRUNK | KAU-POZ |  ", "circuits": [{"id": 708726, "name": "KAU_POZ_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 762}, {"router": "mx1.poz.pl.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "LAG CUSTOMER PIONIER SRF9927597 |", "circuits": [], "snmp-index": 616}, {"router": "mx1.poz.pl.geant.net", "name": "ae11.20", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "SRV_MDVPN CUSTOMER PIONIER #PSNC_BGP_LU_CoC_1 | MD VPN CoC - PIONIER", "circuits": [{"id": 661961, "name": "PSNC_BGP_LU_COC_1", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 782}, {"router": "mx1.poz.pl.geant.net", "name": "ae11.100", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "SRV_GLOBAL CUSTOMER PIONIER #PIONIER_AP1 | ASN8501 | ", "circuits": [{"id": 661706, "name": "PIONIER_AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 791}, {"router": "mx1.poz.pl.geant.net", "name": "ae11.111", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "SRV_L3VPN CUSTOMER PIONIER #PIONIER_AP1_LHCONE | ASN8501", "circuits": [{"id": 661518, "name": "PIONIER_AP1_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 785}, {"router": "mx1.poz.pl.geant.net", "name": "ae11.200", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "SRV_GLOBAL CUSTOMER PIONIER #PIONIER_TemporaryVLAN| Temporary Vlan till Dec 19 TT#2019102134001066 ", "circuits": [{"id": 661705, "name": "PIONIER_TEMPORARYVLAN", "type": "GEANT IP", "status": "operational"}], "snmp-index": 670}, {"router": "mx1.poz.pl.geant.net", "name": "ae11.333", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "SRV_IAS CUSTOMER PIONIER #PIONIER_AP1_IAS IASPS | ASN8501 ", "circuits": [{"id": 660626, "name": "PIONIER_AP1_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 789}, {"router": "mx1.poz.pl.geant.net", "name": "ae11.3220", "bundle": [], "bundle-parents": ["et-3/3/0"], "description": "SRV_L2CIRCUIT CUSTOMER PSNC SINGAREN #lon-poz_GEANTOpen_SINGAREN_CAE1_19113_VL3220-PSNC |", "circuits": [{"id": 707007, "name": "LON-POZ_GEANTOPEN_SINGAREN_CAE1_19113_VL3220-PSNC", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 678}, {"router": "mx2.bru.be.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 709}, {"router": "mx2.bru.be.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-bru-be-RE_IAS | BGP Peering - RE Side", "circuits": [{"id": 710651, "name": "BGPPEERING-BRU-BE-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 712}, {"router": "mx2.bru.be.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #BRU-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 728}, {"router": "mx2.bru.be.geant.net", "name": "xe-0/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | ams-bru", "circuits": [], "snmp-index": 554}, {"router": "mx2.bru.be.geant.net", "name": "xe-0/0/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |", "circuits": [], "snmp-index": 555}, {"router": "mx2.bru.be.geant.net", "name": "xe-0/1/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | bru-lon", "circuits": [], "snmp-index": 556}, {"router": "mx2.bru.be.geant.net", "name": "xe-0/1/1", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER BELNET SRF9924365 P_AE12 | BELNET 1", "circuits": [], "snmp-index": 557}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9919793 | BRU01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 558}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER BELNET SRF9924431 | BELNET IMINDS_IC_GEANT_1", "circuits": [], "snmp-index": 559}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/1.300", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET INTERNET2 #ams-bru_GENI_BELNET-I2_13012 |", "circuits": [{"id": 706804, "name": "AMS-BRU_GENI_BELNET-I2_13012", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 660}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/1.1025", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET NETHERLIGHT #AMS-BRU-IMINDS-IMINDS-NETHERLIGHT-15012 |", "circuits": [{"id": 707029, "name": "AMS-BRU-IMINDS-IMINDS-NETHERLIGHT-15012", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 717}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/1.1125", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET GTS #bru-par_iMINDS_iMINDS-GTS_15008 |", "circuits": [{"id": 706950, "name": "BRU-PAR_IMINDS_IMINDS-GTS_15008", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 716}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/1.1175", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET GTS #ams-bru_FED4FIRE_GTS_9928774 |", "circuits": [{"id": 706025, "name": "AMS-BRU_FED4FIRE_GTS_9928774", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 714}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/1.1176", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET GTS #ams-bru_FED4FIRE_GTS_9951467 |", "circuits": [{"id": 706024, "name": "AMS-BRU_FED4FIRE_GTS_9951467", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 715}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER BELNET SRF9927423 | BELNET IMINDS_IC_GEANT_2", "circuits": [{"id": 705480, "name": "BRU-LON_FED4FIRE_BELNET-JANET_14023", "type": "GEANT PLUS", "status": "operational"}, {"id": 705485, "name": "BRU-ATH_BELNET-GRNET_14016", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 560}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2.197", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_OFELIA_Belnet-RedIRIS_14001 |", "circuits": [{"id": 708367, "name": "BRU-MAR_OFELIA_BELNET-REDIRIS_14001", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 648}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2.705", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-ath_Fed4FIRE_BELNET-GRNET_14016 |", "circuits": [{"id": 705485, "name": "BRU-ATH_BELNET-GRNET_14016", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 652}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2.1001", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_Fed4FIRE_BELNET-RedIRIS_14010 |", "circuits": [{"id": 708368, "name": "BRU-MAR_FED4FIRE_BELNET-REDIRIS_14010", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 632}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2.1002", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_Fed4FIRE_BELNET-RedIRIS_14011 |", "circuits": [{"id": 708356, "name": "BRU-MAR_FED4FIRE_BELNET-REDIRIS_14011", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 633}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2.1003", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_Fed4FIRE_BELNET-RedIRIS_14012 |", "circuits": [{"id": 708366, "name": "BRU-MAR_FED4FIRE_BELNET-REDIRIS_14012", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 634}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2.1004", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_Fed4FIRE_BELNET-RedIRIS_14013 |", "circuits": [{"id": 708364, "name": "BRU-MAR_FED4FIRE_BELNET-REDIRIS_14013", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 635}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2.1005", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_Fed4FIRE_BELNET-RedIRIS_14014 |", "circuits": [{"id": 708360, "name": "BRU-MAR_FED4FIRE_BELNET-REDIRIS_14014", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 636}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2.1006", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET GRNET #bru-ath_Fed4FIRE_BELNET-GRnet_14015 |", "circuits": [{"id": 706509, "name": "BRU-ATH_FED4FIRE_BELNET-GRNET_14015", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 655}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2.1007", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET JANET #bru-lon_Fed4FIRE_BELNET-JANET_14023 |", "circuits": [{"id": 705480, "name": "BRU-LON_FED4FIRE_BELNET-JANET_14023", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 706}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2.1008", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET RNP #bru-par_IMINDS_Belnet-RNP_1505 |", "circuits": [{"id": 706027, "name": "BRU-PAR_IMINDS_BELNET-RNP_1505", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 713}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/2.1290", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET RENATER #bru-gen_IMINDS_IMINDS-RENATER_16023 |", "circuits": [{"id": 706946, "name": "BRU-GEN_IMINDS_IMINDS-RENATER_16023", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 678}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED|Reserved for GCS Testing", "circuits": [], "snmp-index": 561}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9919795 | BRU01-DTNX10-1 XCM2 | moved from ge-0/3/0", "circuits": [], "snmp-index": 562}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 563}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 564}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 565}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | was  Facebook Voyager Brussels Management int. - removed after 21/04/2017", "circuits": [], "snmp-index": 566}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 567}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9919795 | BRU01-DTNX10-1 XCM2", "circuits": [], "snmp-index": 568}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS IPCAMERA SRF0000001 | cam01 - RACK-BE-10", "circuits": [], "snmp-index": 569}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 570}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 571}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 572}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 573}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 574}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 575}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 576}, {"router": "mx2.bru.be.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 577}, {"router": "mx2.bru.be.geant.net", "name": "xe-1/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | ams-bru", "circuits": [], "snmp-index": 546}, {"router": "mx2.bru.be.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER BELNET SRF9924351 | bru-lon_IX_BELNET-LON_13019", "circuits": [{"id": 708279, "name": "BRU-LON_IX_BELNET-LON_13019", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 547}, {"router": "mx2.bru.be.geant.net", "name": "xe-1/0/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET BELNET #bru-lon_IX_BELNET-LON_13019 |", "circuits": [{"id": 708279, "name": "BRU-LON_IX_BELNET-LON_13019", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 645}, {"router": "mx2.bru.be.geant.net", "name": "xe-1/1/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | ams-bru", "circuits": [], "snmp-index": 548}, {"router": "mx2.bru.be.geant.net", "name": "xe-1/1/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |", "circuits": [], "snmp-index": 549}, {"router": "mx2.bru.be.geant.net", "name": "xe-2/0/0", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER BELNET SRF9924365 P_AE12 | BELNET 2", "circuits": [], "snmp-index": 671}, {"router": "mx2.bru.be.geant.net", "name": "xe-2/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 672}, {"router": "mx2.bru.be.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED |to RT1 xe-0/1/0", "circuits": [], "snmp-index": 673}, {"router": "mx2.bru.be.geant.net", "name": "xe-2/1/1", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED |to RT2 xe-0/1/0", "circuits": [], "snmp-index": 674}, {"router": "mx2.bru.be.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-0/1/0", "xe-1/1/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | bru-lon", "circuits": [], "snmp-index": 580}, {"router": "mx2.bru.be.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-0/1/0", "xe-1/1/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRU-LON-IPTRUNK | BRU-LON |", "circuits": [{"id": 708729, "name": "BRU-LON-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 590}, {"router": "mx2.bru.be.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/0", "xe-1/1/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | ams-bru", "circuits": [], "snmp-index": 581}, {"router": "mx2.bru.be.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/0", "xe-1/1/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS_BRU_IPTRUNK | AMS-BRU |  ", "circuits": [{"id": 708738, "name": "AMS-BRU-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 653}, {"router": "mx2.bru.be.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-2/0/0"], "description": "LAG CUSTOMER BELNET SRF9924365 | BELNET", "circuits": [], "snmp-index": 597}, {"router": "mx2.bru.be.geant.net", "name": "ae12.2", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-2/0/0"], "description": "SRV_GLOBAL CUSTOMER BELNET #BELNET-AP1 | ASN2611 |", "circuits": [{"id": 661738, "name": "BELNET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 687}, {"router": "mx2.bru.be.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 705}, {"router": "mx2.bru.be.geant.net", "name": "irb.170", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ipcamera-bru-be |", "circuits": [], "snmp-index": 727}, {"router": "mx2.bru.be.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-bru-be-mgmt-vrf-vlan999", "circuits": [], "snmp-index": 650}, {"router": "rt1.bil.es.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 525}, {"router": "rt1.bil.es.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", "circuits": [], "snmp-index": 531}, {"router": "rt1.bil.es.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 532}, {"router": "rt1.bil.es.geant.net", "name": "et-0/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P1", "circuits": [], "snmp-index": 664}, {"router": "rt1.bil.es.geant.net", "name": "et-0/0/5", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | Infinera BIL-GRV1 Facing POR-GRV2 1/1/3", "circuits": [], "snmp-index": 665}, {"router": "rt1.bil.es.geant.net", "name": "et-0/1/2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | Infinera BIL-GRV1 Facing POR-GRV2 1/1/4", "circuits": [], "snmp-index": 670}, {"router": "rt1.bil.es.geant.net", "name": "et-0/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 671}, {"router": "rt1.bil.es.geant.net", "name": "et-1/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P2", "circuits": [], "snmp-index": 666}, {"router": "rt1.bil.es.geant.net", "name": "et-1/0/5", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | Infinera BIL-GRV2 Facing PAR-GRV1 1/1/3 | BIL-PAR", "circuits": [], "snmp-index": 667}, {"router": "rt1.bil.es.geant.net", "name": "et-1/1/2", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | Infinera BIL-GRV2 Facing PAR-GRV1 1/1/4 | BIL-PAR", "circuits": [], "snmp-index": 668}, {"router": "rt1.bil.es.geant.net", "name": "et-1/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 669}, {"router": "rt1.bil.es.geant.net", "name": "xe-3/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 SRF0000001 | Patched to EX3400 xe-0/2/0", "circuits": [], "snmp-index": 654}, {"router": "rt1.bil.es.geant.net", "name": "xe-3/0/1", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 SRF0000001 | Patched to EX3400 xe-0/2/1", "circuits": [], "snmp-index": 655}, {"router": "rt1.bil.es.geant.net", "name": "xe-3/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P3", "circuits": [], "snmp-index": 656}, {"router": "rt1.bil.es.geant.net", "name": "xe-3/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P4", "circuits": [], "snmp-index": 657}, {"router": "rt1.bil.es.geant.net", "name": "xe-3/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P5", "circuits": [], "snmp-index": 658}, {"router": "rt1.bil.es.geant.net", "name": "xe-3/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P6", "circuits": [], "snmp-index": 659}, {"router": "rt1.bil.es.geant.net", "name": "xe-3/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P7", "circuits": [], "snmp-index": 660}, {"router": "rt1.bil.es.geant.net", "name": "xe-3/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P8", "circuits": [], "snmp-index": 661}, {"router": "rt1.bil.es.geant.net", "name": "xe-3/0/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P9", "circuits": [], "snmp-index": 662}, {"router": "rt1.bil.es.geant.net", "name": "xe-3/0/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to GEANT ODF P10", "circuits": [], "snmp-index": 663}, {"router": "rt1.bil.es.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-3/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | rt1-sw1 (ex3400)", "circuits": [], "snmp-index": 676}, {"router": "rt1.bil.es.geant.net", "name": "ae1.103", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-3/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #DCN_MANAGEMENT_BIL_ES | DCN MANAGEMENT ", "circuits": [{"id": 709868, "name": "DCN_MANAGEMENT_BIL_ES", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 682}, {"router": "rt1.bil.es.geant.net", "name": "ae1.998", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-3/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-bi-es| SW1-EX3400 MANAGEMENT", "circuits": [{"id": 709869, "name": "EX3400-MANAGEMENT-BI-ES", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 684}, {"router": "rt1.bil.es.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-0/0/5", "et-0/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | bil-por", "circuits": [], "snmp-index": 672}, {"router": "rt1.bil.es.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-0/0/5", "et-0/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL_POR_IPTRUNK | BIL-POR |  ", "circuits": [], "snmp-index": 675}, {"router": "rt1.bil.es.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["et-1/0/5", "et-1/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | bil-par", "circuits": [], "snmp-index": 688}, {"router": "rt1.bil.es.geant.net", "name": "ae4.0", "bundle": [], "bundle-parents": ["et-1/0/5", "et-1/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL_PAR_IPTRUNK | BIL-PAR |  ", "circuits": [], "snmp-index": 689}, {"router": "rt1.bil.es.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 511}, {"router": "mx2.lju.si.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 737}, {"router": "mx2.lju.si.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-lju-si-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710650, "name": "BGPPEERING-LJU-SI-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 740}, {"router": "mx2.lju.si.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #LJU-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 741}, {"router": "mx2.lju.si.geant.net", "name": "xe-0/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 558}, {"router": "mx2.lju.si.geant.net", "name": "xe-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 559}, {"router": "mx2.lju.si.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 560}, {"router": "mx2.lju.si.geant.net", "name": "xe-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 561}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 562}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9913669 | LJU01-DTNX4-1 XCM 1", "circuits": [], "snmp-index": 563}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 564}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 565}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 566}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 567}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 568}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 569}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 570}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 571}, {"router": "mx2.lju.si.geant.net", "name": "lt-0/2/10", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN | MDVPN VRR", "circuits": [], "snmp-index": 685}, {"router": "mx2.lju.si.geant.net", "name": "lt-0/2/10.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #LJU_VRR  | MDVPN VRR", "circuits": [{"id": 710656, "name": "LJU_VRR", "type": "MD-VPN (INTERNAL)", "status": "operational"}], "snmp-index": 691}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF0000001 | LJU01-DTNX4-1 XCM 2", "circuits": [], "snmp-index": 572}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 573}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 574}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 575}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 576}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 577}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 578}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 579}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 580}, {"router": "mx2.lju.si.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 581}, {"router": "mx2.lju.si.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 526}, {"router": "mx2.lju.si.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 527}, {"router": "mx2.lju.si.geant.net", "name": "xe-1/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 528}, {"router": "mx2.lju.si.geant.net", "name": "xe-1/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 529}, {"router": "mx2.lju.si.geant.net", "name": "xe-2/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 710}, {"router": "mx2.lju.si.geant.net", "name": "xe-2/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 711}, {"router": "mx2.lju.si.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 713}, {"router": "mx2.lju.si.geant.net", "name": "xe-2/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 712}, {"router": "mx2.lju.si.geant.net", "name": "xe-2/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 744}, {"router": "mx2.lju.si.geant.net", "name": "xe-2/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 745}, {"router": "mx2.lju.si.geant.net", "name": "xe-2/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 746}, {"router": "mx2.lju.si.geant.net", "name": "xe-2/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 747}, {"router": "mx2.lju.si.geant.net", "name": "xe-3/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 813}, {"router": "mx2.lju.si.geant.net", "name": "xe-3/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 814}, {"router": "mx2.lju.si.geant.net", "name": "xe-3/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 815}, {"router": "mx2.lju.si.geant.net", "name": "xe-3/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 816}, {"router": "mx2.lju.si.geant.net", "name": "et-3/1/0", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 SRF0000001 |", "circuits": [], "snmp-index": 817}, {"router": "mx2.lju.si.geant.net", "name": "xe-3/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 818}, {"router": "mx2.lju.si.geant.net", "name": "xe-3/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 819}, {"router": "mx2.lju.si.geant.net", "name": "xe-3/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 820}, {"router": "mx2.lju.si.geant.net", "name": "xe-3/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 821}, {"router": "mx2.lju.si.geant.net", "name": "et-3/3/0", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 SRF0000001 |", "circuits": [], "snmp-index": 822}, {"router": "mx2.lju.si.geant.net", "name": "xe-4/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 803}, {"router": "mx2.lju.si.geant.net", "name": "xe-4/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 804}, {"router": "mx2.lju.si.geant.net", "name": "et-4/1/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | bud-lju", "circuits": [], "snmp-index": 807}, {"router": "mx2.lju.si.geant.net", "name": "xe-4/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 808}, {"router": "mx2.lju.si.geant.net", "name": "xe-4/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 809}, {"router": "mx2.lju.si.geant.net", "name": "xe-4/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 810}, {"router": "mx2.lju.si.geant.net", "name": "xe-4/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 811}, {"router": "mx2.lju.si.geant.net", "name": "et-4/3/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | bud-lju", "circuits": [], "snmp-index": 812}, {"router": "mx2.lju.si.geant.net", "name": "xe-5/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 771}, {"router": "mx2.lju.si.geant.net", "name": "xe-5/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 772}, {"router": "mx2.lju.si.geant.net", "name": "xe-5/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 773}, {"router": "mx2.lju.si.geant.net", "name": "xe-5/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 774}, {"router": "mx2.lju.si.geant.net", "name": "et-5/1/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER ARNES P_AE10 SRF19131 | ", "circuits": [], "snmp-index": 775}, {"router": "mx2.lju.si.geant.net", "name": "xe-5/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 776}, {"router": "mx2.lju.si.geant.net", "name": "xe-5/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 777}, {"router": "mx2.lju.si.geant.net", "name": "xe-5/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 778}, {"router": "mx2.lju.si.geant.net", "name": "xe-5/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 779}, {"router": "mx2.lju.si.geant.net", "name": "et-5/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE ", "circuits": [], "snmp-index": 780}, {"router": "mx2.lju.si.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-4/1/0", "et-4/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | bud-lju", "circuits": [], "snmp-index": 586}, {"router": "mx2.lju.si.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-4/1/0", "et-4/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD_LJU_IPTRUNK | BUD-LJU |  ", "circuits": [{"id": 708736, "name": "BUD-LJU-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 665}, {"router": "mx2.lju.si.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["et-3/1/0", "et-3/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE LJU SRF0000001 | lju-mil2  | ", "circuits": [], "snmp-index": 588}, {"router": "mx2.lju.si.geant.net", "name": "ae4.0", "bundle": [], "bundle-parents": ["et-3/1/0", "et-3/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LJU_MIL2_IPTRUNK | LJU-MIL2 |  ", "circuits": [{"id": 708742, "name": "LJU_MIL2_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 678}, {"router": "mx2.lju.si.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["et-5/1/0"], "description": "LAG CUSTOMER ARNES SRF9923657 | ARNES AP LAG", "circuits": [], "snmp-index": 607}, {"router": "mx2.lju.si.geant.net", "name": "ae10.100", "bundle": [], "bundle-parents": ["et-5/1/0"], "description": "SRV_GLOBAL CUSTOMER ARNES #ARNES-AP1 | ASN2107 | ARNES AP ", "circuits": [{"id": 661943, "name": "ARNES-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 603}, {"router": "mx2.lju.si.geant.net", "name": "ae10.111", "bundle": [], "bundle-parents": ["et-5/1/0"], "description": "SRV_L3VPN CUSTOMER ARNES #ARNES_AP1_LHCONE | ASN2107", "circuits": [{"id": 677395, "name": "ARNES_AP1_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 723}, {"router": "mx2.lju.si.geant.net", "name": "ae10.333", "bundle": [], "bundle-parents": ["et-5/1/0"], "description": "SRV_IAS CUSTOMER ARNES #ARNES_AP1_IAS IASPS | ASN2107 ", "circuits": [{"id": 660450, "name": "ARNES_AP1_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 698}, {"router": "mx2.lju.si.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 693}, {"router": "mx2.lju.si.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-lju-si-mgmt-vrf-vlan999", "circuits": [], "snmp-index": 663}, {"router": "mx2.lju.si.geant.net", "name": "lt-0/2/10.31", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN | VRR to GEANT", "circuits": [], "snmp-index": 692}, {"router": "rt1.kau.lt.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 548}, {"router": "rt1.kau.lt.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-kau-lt-rt-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710693, "name": "BGPPEERING-KAU-LT-RT-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 553}, {"router": "rt1.kau.lt.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #KAU-IAS-RE-Peering_rt1 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 558}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/0/0:0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 |", "circuits": [], "snmp-index": 518}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/0/0:1", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 |", "circuits": [], "snmp-index": 519}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/0/0:2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 |", "circuits": [], "snmp-index": 520}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/0/0:3", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 |", "circuits": [], "snmp-index": 521}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/0/1:0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | Lattelecom ID: SPTN8000162", "circuits": [], "snmp-index": 522}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/0/1:1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF9948746 | Lattelecom ID: SPTN8000358", "circuits": [], "snmp-index": 523}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/0/1:2", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF9948744 | Lattelecom ID: SPTN8000357", "circuits": [], "snmp-index": 524}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/0/1:3", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | Lattelecom ID: SPTN8000274", "circuits": [], "snmp-index": 525}, {"router": "rt1.kau.lt.geant.net", "name": "et-0/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 568}, {"router": "rt1.kau.lt.geant.net", "name": "et-0/0/3", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 |", "circuits": [], "snmp-index": 561}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 534}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER LITNET SRF9925441 |", "circuits": [], "snmp-index": 535}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/1/1.100", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER LITNET #LITNET_AP2 | ASN2847 | ", "circuits": [{"id": 707410, "name": "LITNET_AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 585}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/1/1.333", "bundle": [], "bundle-parents": [], "description": "SRV_IAS CUSTOMER LITNET #LITNET_AP2_IAS IASGWS | ASN2847 | ", "circuits": [{"id": 707416, "name": "LITNET_AP2_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 586}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 536}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 537}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 538}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 539}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/1/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 540}, {"router": "rt1.kau.lt.geant.net", "name": "xe-0/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 541}, {"router": "rt1.kau.lt.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-0/0/1:0", "xe-0/0/1:1", "xe-0/0/1:2", "xe-0/0/1:3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | kau-rig", "circuits": [], "snmp-index": 580}, {"router": "rt1.kau.lt.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["xe-0/0/1:0", "xe-0/0/1:1", "xe-0/0/1:2", "xe-0/0/1:3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU_RIG_IPTRUNK | KAU-RIG |  ", "circuits": [], "snmp-index": 588}, {"router": "rt1.kau.lt.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-0/0/3"], "description": "LAG INFRASTRUCTURE BACKBONE KAU SRF0000001 | kau-kau", "circuits": [], "snmp-index": 562}, {"router": "rt1.kau.lt.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-0/0/3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU_KAU_IPTRUNK | KAU-KAU |", "circuits": [{"id": 709341, "name": "RT1-KAU_RT2-KAU_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 567}, {"router": "rt1.kau.lt.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | kau-rig", "circuits": [], "snmp-index": 573}, {"router": "rt1.kau.lt.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU_RIG_IPTRUNK_rt1kau-end | KAU-RIG | ", "circuits": [{"id": 708169, "name": "KAU_RIG_IPTRUNK_RT1KAU-END", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 574}, {"router": "rt1.kau.lt.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 552}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX01 NIC1 PORT1", "circuits": [], "snmp-index": 512}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/1", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX02 NIC1 PORT1", "circuits": [], "snmp-index": 513}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/2", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX03 NIC1 PORT1", "circuits": [], "snmp-index": 520}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/3", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX10 NIC1 PORT1", "circuits": [], "snmp-index": 522}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/4", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX11 NIC1 PORT1", "circuits": [], "snmp-index": 528}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/5", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX12 NIC1 PORT1", "circuits": [], "snmp-index": 550}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/6", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX20 NIC2 PORT1", "circuits": [], "snmp-index": 614}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/7", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX21 NIC2 PORT1", "circuits": [], "snmp-index": 617}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/12", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX01 NIC1 PORT2", "circuits": [], "snmp-index": 515}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/13", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX02 NIC1 PORT2", "circuits": [], "snmp-index": 516}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/14", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX03 NIC1 PORT2", "circuits": [], "snmp-index": 524}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/15", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE16 | LON2-PRD-ESX10 NIC1 PORT2", "circuits": [], "snmp-index": 526}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/16", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE17 | LON2-PRD-ESX11 NIC1 PORT2", "circuits": [], "snmp-index": 529}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/17", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE18 | LON2-PRD-ESX12 NIC1 PORT2", "circuits": [], "snmp-index": 695}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/18", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX20 NIC2 PORT2", "circuits": [], "snmp-index": 618}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/19", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX21 NIC2 PORT2", "circuits": [], "snmp-index": 619}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/24", "bundle": ["ae21"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX01 NIC1 PORT3", "circuits": [], "snmp-index": 530}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/26", "bundle": ["ae23"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX03 NIC1 PORT3", "circuits": [], "snmp-index": 532}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/27", "bundle": ["ae26"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE26 | LON2-PRD-ESX10 NIC1 PORT3", "circuits": [], "snmp-index": 697}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/28", "bundle": ["ae27"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE27 | LON2-PRD-ESX11 NIC1 PORT3", "circuits": [], "snmp-index": 699}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/29", "bundle": ["ae28"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE28 | LON2-PRD-ESX12 NIC1 PORT3", "circuits": [], "snmp-index": 701}, {"router": "qfx.lon2.uk.geant.net", "name": "ge-0/0/36", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX01 IDRAC", "circuits": [], "snmp-index": 620}, {"router": "qfx.lon2.uk.geant.net", "name": "ge-0/0/37", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX02 IDRAC", "circuits": [], "snmp-index": 621}, {"router": "qfx.lon2.uk.geant.net", "name": "ge-0/0/38", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX03 IDRAC", "circuits": [], "snmp-index": 622}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/44", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | QFX.FRA.DE 0/0/44", "circuits": [], "snmp-index": 718}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/45", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | QFX.PAR.FR 0/0/45", "circuits": [], "snmp-index": 720}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/46", "bundle": ["ae31"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | MX1.LON2.UK xe-1/2/1", "circuits": [], "snmp-index": 678}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-0/0/47", "bundle": ["ae31"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | MX1.LON2.UK xe-3/2/3", "circuits": [], "snmp-index": 679}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX01 NIC2 PORT1", "circuits": [], "snmp-index": 523}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/1", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX02 NIC2 PORT1", "circuits": [], "snmp-index": 519}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/2", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX03 NIC2 PORT1", "circuits": [], "snmp-index": 521}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/6", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX20 NIC2 PORT3", "circuits": [], "snmp-index": 635}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/7", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX21 NIC2 PORT3", "circuits": [], "snmp-index": 643}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/12", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX01 NIC2 PORT2", "circuits": [], "snmp-index": 533}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/13", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX02 NIC2 PORT2", "circuits": [], "snmp-index": 535}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/14", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX03 NIC2 PORT2", "circuits": [], "snmp-index": 536}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/15", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE16 | LON2-PRD-ESX10 NIC2 PORT2", "circuits": [], "snmp-index": 539}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/16", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE17 | LON2-PRD-ESX11 NIC2 PORT2", "circuits": [], "snmp-index": 541}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/17", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE18 | LON2-PRD-ESX12 NIC2 PORT2", "circuits": [], "snmp-index": 682}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/18", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX20 NIC2 PORT4", "circuits": [], "snmp-index": 647}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/19", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX21 NIC2 PORT4", "circuits": [], "snmp-index": 639}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/24", "bundle": ["ae21"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX01 NIC2 PORT3", "circuits": [], "snmp-index": 545}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/26", "bundle": ["ae23"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX03 NIC2 PORT3", "circuits": [], "snmp-index": 551}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/27", "bundle": ["ae26"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE26 | LON2-PRD-ESX10 NIC2 PORT3", "circuits": [], "snmp-index": 689}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/28", "bundle": ["ae27"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE27 | LON2-PRD-ESX11 NIC2 PORT3", "circuits": [], "snmp-index": 691}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/29", "bundle": ["ae28"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE28 | LON2-PRD-ESX12 NIC2 PORT3", "circuits": [], "snmp-index": 693}, {"router": "qfx.lon2.uk.geant.net", "name": "ge-1/0/36", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX10 IDRAC", "circuits": [], "snmp-index": 703}, {"router": "qfx.lon2.uk.geant.net", "name": "ge-1/0/37", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX11 IDRAC", "circuits": [], "snmp-index": 707}, {"router": "qfx.lon2.uk.geant.net", "name": "ge-1/0/38", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | LON2-PRD-ESX12 IDRAC", "circuits": [], "snmp-index": 705}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/44", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | QFX.FRA.DE 1/0/44", "circuits": [], "snmp-index": 641}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/45", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | QFX.PAR.FR 1/0/45", "circuits": [], "snmp-index": 728}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/46", "bundle": ["ae31"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | MX1.LON2.UK xe-1/2/3", "circuits": [], "snmp-index": 534}, {"router": "qfx.lon2.uk.geant.net", "name": "xe-1/0/47", "bundle": ["ae31"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | MX1.LON2.UK xe-4/0/2", "circuits": [], "snmp-index": 537}, {"router": "qfx.lon2.uk.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/0"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX01 ESXI Traffic LAG - No LACP", "circuits": [], "snmp-index": 590}, {"router": "qfx.lon2.uk.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-1/0/1"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX02 ESXI Traffic LAG - No LACP", "circuits": [], "snmp-index": 579}, {"router": "qfx.lon2.uk.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["xe-0/0/2", "xe-1/0/2"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX03 ESXI Traffic LAG - No LACP", "circuits": [], "snmp-index": 580}, {"router": "qfx.lon2.uk.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["xe-0/0/6", "xe-1/0/6"], "description": "LAG INFRASTRUCTURE LAN | LON2-SEC-ESX20 ESXI Traffic LAG - No LACP", "circuits": [], "snmp-index": 581}, {"router": "qfx.lon2.uk.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["xe-0/0/7", "xe-1/0/7"], "description": "LAG INFRASTRUCTURE LAN | LON2-SEC-ESX21 ESXI Traffic LAG - No LACP", "circuits": [], "snmp-index": 582}, {"router": "qfx.lon2.uk.geant.net", "name": "ae6", "bundle": [], "bundle-parents": ["xe-0/0/3"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX10 ESXI Traffic LAG - No LACP", "circuits": [], "snmp-index": 583}, {"router": "qfx.lon2.uk.geant.net", "name": "ae7", "bundle": [], "bundle-parents": ["xe-0/0/4"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX11 ESXI Traffic LAG - No LACP", "circuits": [], "snmp-index": 584}, {"router": "qfx.lon2.uk.geant.net", "name": "ae8", "bundle": [], "bundle-parents": ["xe-0/0/5"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX12 ESXI Traffic LAG - No LACP", "circuits": [], "snmp-index": 585}, {"router": "qfx.lon2.uk.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["xe-0/0/12", "xe-1/0/12"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX01 VM Traffic LAG", "circuits": [], "snmp-index": 588}, {"router": "qfx.lon2.uk.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-0/0/13", "xe-1/0/13"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX02 VM Traffic LAG", "circuits": [], "snmp-index": 591}, {"router": "qfx.lon2.uk.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["xe-0/0/14", "xe-1/0/14"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX03 VM Traffic LAG", "circuits": [], "snmp-index": 592}, {"router": "qfx.lon2.uk.geant.net", "name": "ae14", "bundle": [], "bundle-parents": ["xe-0/0/18", "xe-1/0/18"], "description": "LAG INFRASTRUCTURE LAN | LON2-SEC-ESX20 VM Traffic LAG - No LACP", "circuits": [], "snmp-index": 593}, {"router": "qfx.lon2.uk.geant.net", "name": "ae15", "bundle": [], "bundle-parents": ["xe-0/0/19", "xe-1/0/19"], "description": "LAG INFRASTRUCTURE LAN | LON2-SEC-ESX21 VM Traffic LAG - No LACP", "circuits": [], "snmp-index": 655}, {"router": "qfx.lon2.uk.geant.net", "name": "ae16", "bundle": [], "bundle-parents": ["xe-0/0/15", "xe-1/0/15"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX10 VM TRAFFIC LAG", "circuits": [], "snmp-index": 649}, {"router": "qfx.lon2.uk.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["xe-0/0/16", "xe-1/0/16"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX11 VM TRAFFIC LAG", "circuits": [], "snmp-index": 650}, {"router": "qfx.lon2.uk.geant.net", "name": "ae18", "bundle": [], "bundle-parents": ["xe-0/0/17", "xe-1/0/17"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX12 VM TRAFFIC LAG", "circuits": [], "snmp-index": 651}, {"router": "qfx.lon2.uk.geant.net", "name": "ae21", "bundle": [], "bundle-parents": ["xe-0/0/24", "xe-1/0/24"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX01 VSAN LAG - No LACP", "circuits": [], "snmp-index": 654}, {"router": "qfx.lon2.uk.geant.net", "name": "ae22", "bundle": [], "bundle-parents": ["xe-0/0/25", "xe-1/0/25"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX02 VSAN LAG - No LACP", "circuits": [], "snmp-index": 656}, {"router": "qfx.lon2.uk.geant.net", "name": "ae23", "bundle": [], "bundle-parents": ["xe-0/0/26", "xe-1/0/26"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX03 VSAN LAG - No LACP", "circuits": [], "snmp-index": 657}, {"router": "qfx.lon2.uk.geant.net", "name": "ae26", "bundle": [], "bundle-parents": ["xe-0/0/27", "xe-1/0/27"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX10 VSAN LAG", "circuits": [], "snmp-index": 660}, {"router": "qfx.lon2.uk.geant.net", "name": "ae27", "bundle": [], "bundle-parents": ["xe-0/0/28", "xe-1/0/28"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX11 VSAN LAG", "circuits": [], "snmp-index": 661}, {"router": "qfx.lon2.uk.geant.net", "name": "ae28", "bundle": [], "bundle-parents": ["xe-0/0/29", "xe-1/0/29"], "description": "LAG INFRASTRUCTURE LAN | LON2-PRD-ESX12 VSAN LAG", "circuits": [], "snmp-index": 662}, {"router": "qfx.lon2.uk.geant.net", "name": "ae30", "bundle": [], "bundle-parents": ["xe-0/0/44", "xe-1/0/44"], "description": "LAG INFRASTRUCTURE LAN | QFX.FRA.DE AE14", "circuits": [], "snmp-index": 664}, {"router": "qfx.lon2.uk.geant.net", "name": "ae31", "bundle": [], "bundle-parents": ["xe-0/0/46", "xe-0/0/47", "xe-1/0/46", "xe-1/0/47"], "description": "LAG INFRASTRUCTURE LAN | MX1.LON2 LAG", "circuits": [], "snmp-index": 665}, {"router": "rt2.kau.lt.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 548}, {"router": "rt2.kau.lt.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-kau-lt-rt2-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710649, "name": "BGPPEERING-KAU-LT-RT2-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 553}, {"router": "rt2.kau.lt.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #KAU-IAS-RE-Peering_rt2 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 559}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/0/0:0", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | LITNET ID: CBF - Geant_Kaunas-Poznan_1", "circuits": [], "snmp-index": 527}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/0/0:1", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | LITNET ID: CBF - Geant_Kaunas-Poznan_3", "circuits": [], "snmp-index": 528}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/0/0:2", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | LITNET ID: CBF - Geant_Kaunas-Poznan_2", "circuits": [], "snmp-index": 529}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/0/0:3", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | LITNET ID: CBF - Geant_Kaunas-Poznan_4", "circuits": [], "snmp-index": 530}, {"router": "rt2.kau.lt.geant.net", "name": "et-0/0/3", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 |", "circuits": [], "snmp-index": 561}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 534}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER LITNET SRF9925449 |", "circuits": [], "snmp-index": 535}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/1/1.100", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER LITNET #LITNET-AP1 | ASN2847 |", "circuits": [{"id": 660552, "name": "LITNET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 581}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/1/1.333", "bundle": [], "bundle-parents": [], "description": "SRV_IAS CUSTOMER LITNET #LITNET_AP1_IAS IASGWS | ASN2847 | ", "circuits": [{"id": 661703, "name": "LITNET_AP1_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 582}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 536}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 537}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 538}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 539}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/1/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 540}, {"router": "rt2.kau.lt.geant.net", "name": "xe-0/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 541}, {"router": "rt2.kau.lt.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-0/0/3"], "description": "LAG INFRASTRUCTURE BACKBONE KAU  SRF0000001 | kau-kau", "circuits": [], "snmp-index": 562}, {"router": "rt2.kau.lt.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-0/0/3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU_KAU_IPTRUNK | KAU-KAU |", "circuits": [{"id": 709341, "name": "RT1-KAU_RT2-KAU_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 567}, {"router": "rt2.kau.lt.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "LAG INFRASTRUCTURE BACKBONE POZ SRF0000001 | kau-poz", "circuits": [], "snmp-index": 576}, {"router": "rt2.kau.lt.geant.net", "name": "ae5.0", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU_POZ_IPTRUNK | POZ-KAU |  ", "circuits": [{"id": 708726, "name": "KAU_POZ_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 584}, {"router": "rt2.kau.lt.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 552}, {"router": "mx1.buc.ro.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 655}, {"router": "mx1.buc.ro.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-buc-ro-RE_IAS | BGP PEERING - RE SIDE", "circuits": [{"id": 710669, "name": "BGPPEERING-BUC-RO-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 658}, {"router": "mx1.buc.ro.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #BUC-IAS-RE-PEERING | BGP Peering - IAS Side", "circuits": [], "snmp-index": 659}, {"router": "mx1.buc.ro.geant.net", "name": "xe-0/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 526}, {"router": "mx1.buc.ro.geant.net", "name": "xe-0/0/1", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 SRF0000001 | BUC-SOF | PRIME TELECOM REF: 1018633", "circuits": [], "snmp-index": 527}, {"router": "mx1.buc.ro.geant.net", "name": "xe-0/1/0", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER ROEDUNET P_AE11 SRF9915022 |RoEduNet te-0/6/0/12", "circuits": [], "snmp-index": 528}, {"router": "mx1.buc.ro.geant.net", "name": "xe-0/1/1", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER ROEDUNET P_AE11 SRF9915022 |RoEduNet te-0/6/0/13", "circuits": [], "snmp-index": 529}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | buc ro POP LAN", "circuits": [], "snmp-index": 583}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/0.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-buc-ro-drac| HADES DRAC", "circuits": [{"id": 662935, "name": "PSMP-BUC-RO-DRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 595}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/0.60", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-buc-ro-vlan60| KVMoIP - sw1 port 6", "circuits": [{"id": 663076, "name": "KVMOIP-BUC-RO-VLAN60", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 599}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/0.124", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-buc-ro-vlan124 | Ps", "circuits": [{"id": 663152, "name": "PSMP-BUC-RO-VLAN124", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 618}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 584}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 585}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 586}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 587}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 588}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 589}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 590}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 591}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 593}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 603}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 604}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 605}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 606}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 607}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 608}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 609}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 611}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 612}, {"router": "mx1.buc.ro.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 613}, {"router": "mx1.buc.ro.geant.net", "name": "xe-1/0/0", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER RENAM P_AE12 SRF9942191 |", "circuits": [], "snmp-index": 534}, {"router": "mx1.buc.ro.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 535}, {"router": "mx1.buc.ro.geant.net", "name": "xe-1/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 536}, {"router": "mx1.buc.ro.geant.net", "name": "xe-1/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 537}, {"router": "mx1.buc.ro.geant.net", "name": "xe-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 674}, {"router": "mx1.buc.ro.geant.net", "name": "xe-1/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 673}, {"router": "mx1.buc.ro.geant.net", "name": "xe-1/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 675}, {"router": "mx1.buc.ro.geant.net", "name": "xe-1/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 676}, {"router": "mx1.buc.ro.geant.net", "name": "xe-2/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 684}, {"router": "mx1.buc.ro.geant.net", "name": "xe-2/0/1", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER ROEDUNET P_AE11 SRF19021 |RoEduNet te-0/6/0/10 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 685}, {"router": "mx1.buc.ro.geant.net", "name": "xe-2/0/2", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER ROEDUNET P_AE11 SRF19021 |RoEduNet te-0/6/0/11 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 686}, {"router": "mx1.buc.ro.geant.net", "name": "xe-2/0/3", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF0000001 | GTT/002012804", "circuits": [], "snmp-index": 687}, {"router": "mx1.buc.ro.geant.net", "name": "xe-2/0/4", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF0000001 | GTT/002012789", "circuits": [], "snmp-index": 688}, {"router": "mx1.buc.ro.geant.net", "name": "xe-2/0/5", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF0000001 | GTT/002012797", "circuits": [], "snmp-index": 689}, {"router": "mx1.buc.ro.geant.net", "name": "xe-2/0/6", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF0000001 | GTT/002012796", "circuits": [], "snmp-index": 690}, {"router": "mx1.buc.ro.geant.net", "name": "xe-2/0/7", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 SRF0000001 | BUC-SOF | PRIME TELECOM REF: 1018633", "circuits": [], "snmp-index": 691}, {"router": "mx1.buc.ro.geant.net", "name": "xe-2/0/8", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 SRF0000001 | BUC-SOF | PRIME TELECOM REF: 1018633", "circuits": [], "snmp-index": 692}, {"router": "mx1.buc.ro.geant.net", "name": "xe-2/0/9", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 SRF0000001 | BUC-SOF | PRIME TELECOM REF: 1018633", "circuits": [], "snmp-index": 693}, {"router": "mx1.buc.ro.geant.net", "name": "et-3/0/0", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | RoEduNet AP Upgrade", "circuits": [], "snmp-index": 715}, {"router": "mx1.buc.ro.geant.net", "name": "et-4/0/0", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae9 SRF0000001 | BUC-FRA | TTI REF: WL078541", "circuits": [], "snmp-index": 716}, {"router": "mx1.buc.ro.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["xe-2/0/3", "xe-2/0/4", "xe-2/0/5", "xe-2/0/6"], "description": "LAG INFRASTRUCTURE BACKBONE BUD SRF0000001 | buc-bud", "circuits": [], "snmp-index": 542}, {"router": "mx1.buc.ro.geant.net", "name": "ae4.0", "bundle": [], "bundle-parents": ["xe-2/0/3", "xe-2/0/4", "xe-2/0/5", "xe-2/0/6"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-BUD-IPTRUNK | BUC-BUD |", "circuits": [{"id": 708744, "name": "BUC-BUD-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 578}, {"router": "mx1.buc.ro.geant.net", "name": "ae8", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-2/0/7", "xe-2/0/8", "xe-2/0/9"], "description": "LAG INFRASTRUCTURE BACKBONE SOF SRF0000001 | buc-sof", "circuits": [], "snmp-index": 546}, {"router": "mx1.buc.ro.geant.net", "name": "ae8.0", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-2/0/7", "xe-2/0/8", "xe-2/0/9"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-SOF-IPTRUNK | BUC-SOF |", "circuits": [{"id": 708776, "name": "BUC-SOF-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 636}, {"router": "mx1.buc.ro.geant.net", "name": "ae9", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE BUC SRF0000001 | buc-fra | TTI REF: WL078541", "circuits": [], "snmp-index": 547}, {"router": "mx1.buc.ro.geant.net", "name": "ae9.0", "bundle": [], "bundle-parents": ["et-4/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC_FRA_IPTRUNK | BUC-FRA | TTI REF: WL078541", "circuits": [], "snmp-index": 735}, {"router": "mx1.buc.ro.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-2/0/1", "xe-2/0/2"], "description": "LAG CUSTOMER ROEDUNET SRF998829 |", "circuits": [], "snmp-index": 549}, {"router": "mx1.buc.ro.geant.net", "name": "ae11.0", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-2/0/1", "xe-2/0/2"], "description": "SRV_GLOBAL CUSTOMER ROEDUNET #ROEDUNET-AP1 | ASN2614 |", "circuits": [{"id": 662979, "name": "ROEDUNET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 640}, {"router": "mx1.buc.ro.geant.net", "name": "ae11.111", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-2/0/1", "xe-2/0/2"], "description": "SRV_L3VPN CUSTOMER ROEDUNET #ROEDUNET_AP1_LHCONE | ASN2614", "circuits": [{"id": 663190, "name": "ROEDUNET_AP1_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 643}, {"router": "mx1.buc.ro.geant.net", "name": "ae11.333", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-2/0/1", "xe-2/0/2"], "description": "SRV_IAS CUSTOMER ROEDUNET #ROEDUNET_AP1_IAS IASGWS | ASN2614 ", "circuits": [{"id": 663112, "name": "ROEDUNET_AP1_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 642}, {"router": "mx1.buc.ro.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-1/0/0"], "description": "LAG CUSTOMER RENAM SRF18037 |", "circuits": [], "snmp-index": 550}, {"router": "mx1.buc.ro.geant.net", "name": "ae12.200", "bundle": [], "bundle-parents": ["xe-1/0/0"], "description": "SRV_GLOBAL CUSTOMER RENAM #RENAM-AP1 | ASN9199 | ", "circuits": [{"id": 663023, "name": "RENAM-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 665}, {"router": "mx1.buc.ro.geant.net", "name": "ae12.333", "bundle": [], "bundle-parents": ["xe-1/0/0"], "description": "SRV_IAS CUSTOMER RENAM #RENAM-AP-IAS IASGWS | ASN9199 ", "circuits": [{"id": 662955, "name": "RENAM-AP-IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 666}, {"router": "mx1.buc.ro.geant.net", "name": "ae12.667", "bundle": [], "bundle-parents": ["xe-1/0/0"], "description": "SRV_CLS CUSTOMER RENAM #RENAM-AP-CLS|ASN9199 | ", "circuits": [{"id": 677400, "name": "RENAM-AP-CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 706}, {"router": "mx1.buc.ro.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 619}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/0", "bundle": [], "bundle-parents": [], "description": "Reserved for GEANT OC to test Virgin Media link", "circuits": [], "snmp-index": 513}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/1", "bundle": [], "bundle-parents": [], "description": "To SRX2", "circuits": [], "snmp-index": 514}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/1.10", "bundle": [], "bundle-parents": [], "description": "Inter-SRX Link for Routing", "circuits": [], "snmp-index": 535}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/2", "bundle": [], "bundle-parents": [], "description": "To Switch Cluster vme.0 - switch chassis 0 mgmt - primary", "circuits": [], "snmp-index": 515}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/3", "bundle": [], "bundle-parents": [], "description": "SRX-1 To Switch Cluster ge-0/0/4", "circuits": [], "snmp-index": 516}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/3.500", "bundle": [], "bundle-parents": [], "description": "City House Network Infrastructure", "circuits": [], "snmp-index": 544}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/3.501", "bundle": [], "bundle-parents": [], "description": "City House WAN Gateway", "circuits": [], "snmp-index": 545}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/4", "bundle": [], "bundle-parents": [], "description": "PHY to Virgin Media NTU", "circuits": [], "snmp-index": 517}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/4.17", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE CORPORATE #VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN17", "circuits": [], "snmp-index": 549}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/4.18", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE CORPORATE #VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN18", "circuits": [], "snmp-index": 550}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/4.19", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE CORPORATE #VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN19", "circuits": [{"id": 709123, "name": "TEST-BGP LINK-LON2 (DO NOT OPEN A TICKET)", "type": "GEANT IP", "status": "operational"}], "snmp-index": 532}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 519}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 520}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 521}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 522}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 523}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/10", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 524}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/11", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 525}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/12", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 527}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/13", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 528}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/14", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 529}, {"router": "srx1.ch.office.geant.net", "name": "ge-0/0/15", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 531}, {"router": "srx1.ch.office.geant.net", "name": "fxp0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE MANAGEMENT | CH SRX-1 Router", "circuits": [], "snmp-index": 1}, {"router": "srx1.ch.office.geant.net", "name": "lo0.0", "bundle": [], "bundle-parents": [], "description": "Router Loopback", "circuits": [], "snmp-index": 16}, {"router": "mx2.ath.gr.geant.net", "name": "xe-0/0/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | GRNET ATH-ATH2 DWDM_2 #CH46 ", "circuits": [], "snmp-index": 516}, {"router": "mx2.ath.gr.geant.net", "name": "xe-0/0/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | GRNET ATH-ATH2 DWDM_1 #CH47 ", "circuits": [], "snmp-index": 517}, {"router": "mx2.ath.gr.geant.net", "name": "xe-0/1/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER GRNET P_AE10 SRF995511 | GRNET-AP1-LL1", "circuits": [], "snmp-index": 518}, {"router": "mx2.ath.gr.geant.net", "name": "xe-0/1/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER GRNET P_AE10 SRF9912270 | GRNET-AP1-LL2", "circuits": [], "snmp-index": 519}, {"router": "mx2.ath.gr.geant.net", "name": "lt-1/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 622}, {"router": "mx2.ath.gr.geant.net", "name": "lt-1/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-ath2-gr-RE_IAS| BGP PEERING - RE SIDE", "circuits": [], "snmp-index": 625}, {"router": "mx2.ath.gr.geant.net", "name": "lt-1/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #ATH-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 626}, {"router": "mx2.ath.gr.geant.net", "name": "xe-1/0/0", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF9943877 | OTE 1-6RK0GC7", "circuits": [], "snmp-index": 569}, {"router": "mx2.ath.gr.geant.net", "name": "xe-1/0/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER GRNET P_AE10 SRF9943879| GRNET-AP1-LL3", "circuits": [], "snmp-index": 570}, {"router": "mx2.ath.gr.geant.net", "name": "xe-1/1/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF9943881 | GRNET ATH-ATH2 DWDM_3 #CH48 ", "circuits": [], "snmp-index": 573}, {"router": "mx2.ath.gr.geant.net", "name": "xe-1/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 574}, {"router": "mx2.ath.gr.geant.net", "name": "xe-2/0/0", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER GRNET SRF9914707 |", "circuits": [{"id": 705435, "name": "ATH-LON_CONTENT_GRNET-JANET_15031", "type": "GEANT PLUS", "status": "operational"}, {"id": 705452, "name": "ATH-LON_FUTUREINTERNET_GRNET-JANET_12204", "type": "GEANT PLUS", "status": "operational"}, {"id": 705485, "name": "BRU-ATH_BELNET-GRNET_14016", "type": "GEANT PLUS", "status": "operational"}, {"id": 707137, "name": "ATH-KOR_SMARTFIRE-GRNET-KOREN_15007", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 642}, {"router": "mx2.ath.gr.geant.net", "name": "xe-2/0/0.111", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN CUSTOMER GRNET #GRNET_ATH_LHCONE | ASN8581", "circuits": [{"id": 661771, "name": "GRNET_ATH_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 686}, {"router": "mx2.ath.gr.geant.net", "name": "xe-2/0/0.692", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GRNET JISC #ath-lon_FutureInternet_GRNET-JANET_12204 |", "circuits": [{"id": 705452, "name": "ATH-LON_FUTUREINTERNET_GRNET-JANET_12204", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 690}, {"router": "mx2.ath.gr.geant.net", "name": "xe-2/0/0.695", "bundle": [], "bundle-parents": [], "description": "SRV_MDVPN CUSTOMER GRNET #GRNET-BGP-LU-CoC |", "circuits": [{"id": 660642, "name": "GRNET-BGP-LU-COC", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 688}, {"router": "mx2.ath.gr.geant.net", "name": "xe-2/0/0.700", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GRNET KOREN #ath-kor_SMARTFIRE-GRNET-KOREN_15007 |", "circuits": [{"id": 707137, "name": "ATH-KOR_SMARTFIRE-GRNET-KOREN_15007", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 691}, {"router": "mx2.ath.gr.geant.net", "name": "xe-2/0/0.705", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GRNET BELNET #bru-ath_BELNET-GRNET_14016 |", "circuits": [{"id": 705485, "name": "BRU-ATH_BELNET-GRNET_14016", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 692}, {"router": "mx2.ath.gr.geant.net", "name": "xe-2/0/0.1006", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET GRNET #bru-ath_Fed4FIRE_BELNET-GRnet_14015 |", "circuits": [{"id": 706509, "name": "BRU-ATH_FED4FIRE_BELNET-GRNET_14015", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 693}, {"router": "mx2.ath.gr.geant.net", "name": "xe-2/0/0.1225", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GRNET JISC #ath-lon_CONTENT_GRNET-JANET_15031 |", "circuits": [{"id": 705435, "name": "ATH-LON_CONTENT_GRNET-JANET_15031", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 694}, {"router": "mx2.ath.gr.geant.net", "name": "xe-2/0/1", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | OTE 1-94LW1NA", "circuits": [], "snmp-index": 643}, {"router": "mx2.ath.gr.geant.net", "name": "xe-2/1/0", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | OTE 1-4XPLWIS", "circuits": [], "snmp-index": 644}, {"router": "mx2.ath.gr.geant.net", "name": "xe-2/1/1", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | OTE 1-4XPLWG5 ", "circuits": [], "snmp-index": 645}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 646}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | ath gr POP LAN", "circuits": [], "snmp-index": 647}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/1.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-ath-gr-drac | HADES drac", "circuits": [{"id": 661381, "name": "PSMP-ATH-GR-DRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 659}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/1.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP_ATH_GR | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150810", "circuits": [{"id": 661979, "name": "OWAMP_ATH_GR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 660}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/1.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-ath-gr-idrac |perfSONAR iDRAC", "circuits": [{"id": 661314, "name": "PS-ATH-GR-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 661}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/1.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-ath-gr-management |perfSONAR MGMT", "circuits": [{"id": 661912, "name": "PS-ATH-GR-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 662}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/1.60", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-ath2-gr| KVMoIP -switch port 4", "circuits": [{"id": 661231, "name": "KVMOIP-ATH2-GR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 665}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 648}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 649}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 650}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 651}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 652}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 653}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 654}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 655}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 672}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 673}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 674}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 675}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 676}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 677}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 678}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 679}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 680}, {"router": "mx2.ath.gr.geant.net", "name": "ge-2/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 681}, {"router": "mx2.ath.gr.geant.net", "name": "xe-3/0/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER GRNET P_AE10 SRF21030| GRNET-AP1-LL4", "circuits": [], "snmp-index": 731}, {"router": "mx2.ath.gr.geant.net", "name": "xe-3/0/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |  Ch45 EIE - TIS OCH ATH-ATH2 DWDM_4", "circuits": [], "snmp-index": 732}, {"router": "mx2.ath.gr.geant.net", "name": "xe-3/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 733}, {"router": "mx2.ath.gr.geant.net", "name": "xe-3/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 734}, {"router": "mx2.ath.gr.geant.net", "name": "xe-3/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 735}, {"router": "mx2.ath.gr.geant.net", "name": "xe-3/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 736}, {"router": "mx2.ath.gr.geant.net", "name": "xe-3/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 737}, {"router": "mx2.ath.gr.geant.net", "name": "xe-3/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 738}, {"router": "mx2.ath.gr.geant.net", "name": "xe-3/0/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 739}, {"router": "mx2.ath.gr.geant.net", "name": "xe-3/0/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 740}, {"router": "mx2.ath.gr.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/0/1", "xe-1/1/0", "xe-3/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE ATH2 SRF0000001 | ath-ath2", "circuits": [], "snmp-index": 520}, {"router": "mx2.ath.gr.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/0/1", "xe-1/1/0", "xe-3/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH-ATH2-IPTRUNK | ATH-ATH2 |", "circuits": [{"id": 708778, "name": "ATH-ATH2-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 630}, {"router": "mx2.ath.gr.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-2/0/1", "xe-2/1/0", "xe-2/1/1"], "description": "LAG INFRASTRUCTURE BACKBONE MIL SRF0000001 | ath-mil", "circuits": [], "snmp-index": 523}, {"router": "mx2.ath.gr.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-2/0/1", "xe-2/1/0", "xe-2/1/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH-MIL-IPTRUNK | ATH-MIL |", "circuits": [{"id": 708731, "name": "ATH-MIL-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 685}, {"router": "mx2.ath.gr.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-1/0/1", "xe-3/0/0"], "description": "LAG CUSTOMER GRNET SRF9916023 | GRnet AP", "circuits": [], "snmp-index": 530}, {"router": "mx2.ath.gr.geant.net", "name": "ae10.100", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-1/0/1", "xe-3/0/0"], "description": "SRV_GLOBAL CUSTOMER GRNET #GRNET-AP1 | ASN5408 | ", "circuits": [{"id": 661424, "name": "GRNET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 578}, {"router": "mx2.ath.gr.geant.net", "name": "ae10.333", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-1/0/1", "xe-3/0/0"], "description": "SRV_IAS CUSTOMER GRNET #GRNET-AP1-IAS IASGWS | ASN5408 | ", "circuits": [{"id": 661977, "name": "GRNET-AP1-IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 595}, {"router": "mx2.ath.gr.geant.net", "name": "ae10.667", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-1/0/1", "xe-3/0/0"], "description": "SRV_CLS CUSTOMER GRNET #GRNET-AP1-CLS|ASN5408 | ", "circuits": [{"id": 661415, "name": "GRNET-AP1-CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 698}, {"router": "mx2.ath.gr.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 555}, {"router": "mx1.par.fr.geant.net", "name": "xe-0/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Connected to TIM-A-2-1-2", "circuits": [], "snmp-index": 588}, {"router": "mx1.par.fr.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL | ", "circuits": [], "snmp-index": 590}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | par fr POP LAN", "circuits": [], "snmp-index": 592}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.9", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE_ESXI_DRAC_PAR_FR | ne-esxi-prod-par-1-idrac", "circuits": [{"id": 679317, "name": "NE_ESXI_DRAC_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1078}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.10", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE_ESXI_VMNETWORK_PAR_FR | ne-esxi-prod-par-1 VMNetwork", "circuits": [{"id": 679316, "name": "NE_ESXI_VMNETWORK_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1076}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.11", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE_ESXI_TNMS_PAR_FR | ne-esxi-prod-par-1 TNMS-VMs Portgroup", "circuits": [{"id": 679318, "name": "NE_ESXI_TNMS_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1077}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-par-fr-drac | Hades drac", "circuits": [{"id": 661419, "name": "PSMP-PAR-FR-DRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 815}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP_PAR_FR | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", "circuits": [{"id": 661306, "name": "OWAMP_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 816}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-par-fr-idrac |perfSONAR iDRAC", "circuits": [{"id": 661991, "name": "PS-PAR-FR-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 718}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-par-fr-management |perfSONAR MGMT", "circuits": [{"id": 661532, "name": "PS-PAR-FR-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 745}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.25", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DRAC_SuperPoP-PAR_FR | SuperPOP DRAC", "circuits": [{"id": 661896, "name": "DRAC_SUPERPOP-PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 946}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.40", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DEEPFIELD_IDRAC_PAR_FR | Deepfield iDRAC", "circuits": [{"id": 661374, "name": "DEEPFIELD_IDRAC_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 716}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.100", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #JUNOSSPACE_R720_DRAC_PAR_FR | JUNOSSPACE R720 DRAC", "circuits": [{"id": 661292, "name": "JUNOSSPACE_R720_DRAC_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 864}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.101", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #JUNOSSPACE_R720_ESXI_PAR_FR | JUNOSSPACE R720 ESXI", "circuits": [{"id": 661989, "name": "JUNOSSPACE_R720_ESXI_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 865}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.102", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #JUNOSSPACE_R720_DATA_PAR_FR | JUNOSSPACE R720 - DATA", "circuits": [{"id": 661997, "name": "JUNOSSPACE_R720_DATA_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 866}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.103", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #JUNOSSPACE_R720_VCENTRE_PAR_FR | JUNOSSPACE R720 - VCENTER VM", "circuits": [{"id": 661998, "name": "JUNOSSPACE_R720_VCENTRE_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 905}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.104", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #JUNOSSPACE_R720_NEBACKUP_PAR_FR | JUNOSSPACE R720 - NEBACKUP VM", "circuits": [{"id": 661517, "name": "JUNOSSPACE_R720_NEBACKUP_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 913}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.201", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access #PAR_Groove_1 | PAR Groove 1 ", "circuits": [{"id": 661491, "name": "PAR_GROOVE_1", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1401}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.202", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #PAR_Groove_1_Management | PAR Groove 1 Direct Management", "circuits": [{"id": 661506, "name": "PAR_GROOVE_1_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1402}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.203", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #PAR_Groove_2 | PAR Groove 2  ", "circuits": [{"id": 661392, "name": "PAR_GROOVE_2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1403}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.204", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #PAR_Groove_2_Management | PAR Groove 2 Direct Management", "circuits": [{"id": 661478, "name": "PAR_GROOVE_2_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1404}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.250", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #taas-gts-control-par-fr-vlan250 | TAAS GTS CONTROL", "circuits": [{"id": 661601, "name": "TAAS-GTS-CONTROL-PAR-FR-VLAN250", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 527}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.300", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #dtn-project-par-fr| DTN-Project CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20171205", "circuits": [{"id": 661644, "name": "DTN-PROJECT-PAR-FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1243}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.550", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LHCONE_PAR_FR_VLAN550 | LHCONE", "circuits": [{"id": 661688, "name": "LHCONE_PAR_FR_VLAN550", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 834}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.903", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #par-par_MISC_GEANT-INTERNET2_9940539 |", "circuits": [{"id": 705916, "name": "PAR-PAR_MISC_GEANT-INTERNET2_9940539", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1212}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.908", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #AMS-PAR-MISC-GEANT-INTERNET2-9940543 |", "circuits": [{"id": 705419, "name": "AMS-PAR-MISC-GEANT-INTERNET2-9940543", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1213}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/0.991", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access PARIS #PAR_TNMS | Internal network", "circuits": [{"id": 679315, "name": "PAR_TNMS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1079}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9919781 | PAR01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 593}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP", "circuits": [{"id": 708221, "name": "PS-PAR-FR-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 594}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-par-fr-owamp | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160602", "circuits": [{"id": 708221, "name": "PS-PAR-FR-OWAMP", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 785}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS FLOWMON_DDOS | FlowMon Management CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20171010", "circuits": [{"id": 708186, "name": "FLOWMON_PAR_FR_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 595}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON_PAR_FR_MANAGEMENT | FlowMon1 Management + FanOut CONTACT: evangelos.spatharas@geant.org", "circuits": [{"id": 708186, "name": "FLOWMON_PAR_FR_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1207}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL", "circuits": [], "snmp-index": 596}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS FLOWMON_DDOS | FlowMon iDRAC CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20171010", "circuits": [{"id": 708278, "name": "FLOWMON_PAR_FR_IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 597}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/5.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON_PAR_FR_IDRAC | FlowMon1 Management + FanOut CONTACT: evangelos.spatharas@geant.org", "circuits": [{"id": 708278, "name": "FLOWMON_PAR_FR_IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1204}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access", "circuits": [], "snmp-index": 598}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access", "circuits": [], "snmp-index": 599}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED|Reserved for GCS Testing", "circuits": [], "snmp-index": 600}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 601}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9919783 | PAR01-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 602}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | OPENFLOW port for virtual switch OF control", "circuits": [], "snmp-index": 603}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS FLOWMON_DDOS | FlowMon NetFlow_Interface CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20171010", "circuits": [{"id": 708261, "name": "FLOWMON_PAR_FR_NETFLOW", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 604}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/3/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON_PAR_FR_NETFLOW | FlowMon1 Management + FanOut CONTACT: evangelos.spatharas@geant.org", "circuits": [{"id": 708261, "name": "FLOWMON_PAR_FR_NETFLOW", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1206}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | QFX1 C0 MGMT", "circuits": [], "snmp-index": 605}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | QFX2 C0 MGMT", "circuits": [], "snmp-index": 606}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL", "circuits": [], "snmp-index": 607}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL", "circuits": [], "snmp-index": 608}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SPLUNK SRF0000001 | Splunk1 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20160825", "circuits": [], "snmp-index": 609}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SPLUNK SRF0000001 | Splunk1 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20160825", "circuits": [], "snmp-index": 610}, {"router": "mx1.par.fr.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | RESERVED FOR LAN SW - AK", "circuits": [], "snmp-index": 611}, {"router": "mx1.par.fr.geant.net", "name": "lt-0/3/10", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN | MDVPN VRR", "circuits": [], "snmp-index": 708}, {"router": "mx1.par.fr.geant.net", "name": "lt-0/3/10.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #PAR_VRR  | MDVPN VRR", "circuits": [{"id": 710695, "name": "PAR_VRR", "type": "MD-VPN (INTERNAL)", "status": "operational"}], "snmp-index": 712}, {"router": "mx1.par.fr.geant.net", "name": "et-1/0/2", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER SWITCH P_AE13 SRF19030 | SWITCH BACKUP", "circuits": [], "snmp-index": 1149}, {"router": "mx1.par.fr.geant.net", "name": "et-1/0/5", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY CUSTOMER RESTENA AP2 P_AE18 SRF19026 |", "circuits": [], "snmp-index": 1150}, {"router": "mx1.par.fr.geant.net", "name": "lt-1/1/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE", "circuits": [], "snmp-index": 1497}, {"router": "mx1.par.fr.geant.net", "name": "lt-1/1/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-par-fr-RE_IAS| BGP PEERING - RE SIDE", "circuits": [{"id": 710691, "name": "BGPPEERING-PAR-FR-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1500}, {"router": "mx1.par.fr.geant.net", "name": "lt-1/1/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #PAR-IAS-RE-Peering | BGP Peering - IAS SIDE", "circuits": [], "snmp-index": 1501}, {"router": "mx1.par.fr.geant.net", "name": "et-1/1/2", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY RE_INTERCONNECT MANLAN P_ae15 SRF9929287 | Paris-NewYork ANA Link - RGBO4TA005", "circuits": [], "snmp-index": 1151}, {"router": "mx1.par.fr.geant.net", "name": "et-1/1/5", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER RENATER P_AE12  SRF9943299 |Intrexion circuitID :FR112753|", "circuits": [], "snmp-index": 1152}, {"router": "mx1.par.fr.geant.net", "name": "et-2/0/2", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY CUSTOMER RENATER LHCONE P_ae14 SRF18064 |", "circuits": [], "snmp-index": 1165}, {"router": "mx1.par.fr.geant.net", "name": "et-2/0/5", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1166}, {"router": "mx1.par.fr.geant.net", "name": "et-2/1/2", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1223}, {"router": "mx1.par.fr.geant.net", "name": "et-2/1/5", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1231}, {"router": "mx1.par.fr.geant.net", "name": "et-3/0/2", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY CUSTOMER_GEO SURFnet #SURFnet_GEO_FR_1 |  P_ae17 SRF18071|Circuit ID: FR108917 | Netherlight Port:Pr003a-jnx-01: et-0/0/1", "circuits": [{"id": 668957, "name": "SURFNET_GEO_FR_1", "type": "GEANT OPEN PORT", "status": "operational"}], "snmp-index": 1167}, {"router": "mx1.par.fr.geant.net", "name": "et-3/0/5", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1211}, {"router": "mx1.par.fr.geant.net", "name": "et-3/1/2", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1233}, {"router": "mx1.par.fr.geant.net", "name": "et-3/1/5", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1247}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/0/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF99??? | PSMP BWCTL", "circuits": [{"id": 708216, "name": "PS-PAR-FR-BWCTL_XE4/0/0", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1260}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/0/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-par-fr-bwctl_xe4/0/0 | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160602", "circuits": [{"id": 708216, "name": "PS-PAR-FR-BWCTL_XE4/0/0", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1308}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/0/1", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 SRF0000001 | mx1-sw1 (ex3400)", "circuits": [], "snmp-index": 1261}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/0/2", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 SRF0000001 | mx1-sw1 (ex3400)", "circuits": [], "snmp-index": 1262}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | Link to gts.mx1 xe-0/0/0:3", "circuits": [], "snmp-index": 1263}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/0/4", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE SUPERPOP P_ae30 | QFX xe-0/0/19", "circuits": [], "snmp-index": 1264}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/0/5", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE SUPERPOP P_ae30 | QFX xe-1/0/18", "circuits": [], "snmp-index": 1265}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/0/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | Link to gts.mx2 xe-0/0/0:3", "circuits": [], "snmp-index": 1266}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P4", "circuits": [{"id": 660548, "name": "SDX-L2-HOSTA-TO-BR52", "type": "GEANT PLUS", "status": "operational"}, {"id": 661322, "name": "SDX-L2-HOSTA-TO-BR51", "type": "GEANT PLUS", "status": "operational"}, {"id": 661453, "name": "SDX-L2-HOSTB-TO-BR52", "type": "GEANT PLUS", "status": "operational"}, {"id": 661725, "name": "SDX-L2-HOSTB-TO-BR51", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1269}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/1.1", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostA-to-Br51 ", "circuits": [{"id": 661322, "name": "SDX-L2-HOSTA-TO-BR51", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1504}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/1.2", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostB-to-Br51 ", "circuits": [{"id": 661725, "name": "SDX-L2-HOSTB-TO-BR51", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1505}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/1.3", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostA-to-Br52 ", "circuits": [{"id": 660548, "name": "SDX-L2-HOSTA-TO-BR52", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1506}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/1.4", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostB-to-Br52 ", "circuits": [{"id": 661453, "name": "SDX-L2-HOSTB-TO-BR52", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1507}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/2", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE SUPERPOP P_ae30 | QFX xe-1/0/19", "circuits": [], "snmp-index": 1270}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS JRA JRA_MX_to_CORSA_P5", "circuits": [{"id": 661334, "name": "SDN-BOD-BR53-OF-P2_VLAN1023", "type": "GEANT PLUS", "status": "operational"}, {"id": 661454, "name": "SDN-BOD-BR53-OF-P1", "type": "GEANT PLUS", "status": "operational"}, {"id": 661643, "name": "SDN-BOD-BR53-OF-P2_VLAN1025", "type": "GEANT PLUS", "status": "operational"}, {"id": 662005, "name": "SDN-BOD-BR53-OF-P2_VLAN1024", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1271}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/3.1", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 #SDX-L2_PILOT-Br51-OF-P3_par", "circuits": [{"id": 678507, "name": "SDX-L2_PILOT-BR51-OF-P3_PAR", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1509}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/3.1022", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 #SDN-BOD-BR53-OF-P1 ", "circuits": [{"id": 661454, "name": "SDN-BOD-BR53-OF-P1", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1510}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/3.1023", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 #SDN-BOD-BR53-OF-P2_vlan1023", "circuits": [{"id": 661334, "name": "SDN-BOD-BR53-OF-P2_VLAN1023", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1511}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/3.1024", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1  #SDN-BOD-BR53-OF-P2_vlan1024 ", "circuits": [{"id": 662005, "name": "SDN-BOD-BR53-OF-P2_VLAN1024", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1512}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/3.1025", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1  #SDN-BOD-BR53-OF-P2_vlan1025 ", "circuits": [{"id": 661643, "name": "SDN-BOD-BR53-OF-P2_VLAN1025", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1513}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/3.2905", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER CERN GEANT  #CERN_BACKHAUL_GEANT_SDN_BoD | CERN backhaul from GEAN to SDN BoD edge for trial", "circuits": [{"id": 706756, "name": "CERN-TO-SDN-BOD-CORSA-IN-PARIS", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1514}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P6", "circuits": [], "snmp-index": 1272}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/4.1", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2_PILOT-Br52 OF-P3_par   ", "circuits": [{"id": 678507, "name": "SDX-L2_PILOT-BR51-OF-P3_PAR", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1516}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/4.1001", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE SDX-L2_PILOT ACCESS JRA1 | #SDN_PAR-BR51", "circuits": [{"id": 661375, "name": "SDN_PAR-BR51", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1517}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/4.1002", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE SDX-L2_PILOT ACCESS JRA1 | #SDN_PAR-BR52", "circuits": [{"id": 661570, "name": "SDN_PAR-BR52", "type": "L3-VPN", "status": "operational"}, {"id": 678507, "name": "SDX-L2_PILOT-BR51-OF-P3_PAR", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1518}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/4.1003", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN Infrastructure SDN-BOD_PILOT ACCESS JRA1 | #SDN-BOD-PILOT-BR53", "circuits": [{"id": 661746, "name": "SDN-BOD-PILOT-BR53", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1519}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9921601 | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", "circuits": [{"id": 708318, "name": "PS-PAR-FR-BWCTL_XE4/1/5", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1273}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/5.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-par-fr-bwctl_xe4/1/5 | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", "circuits": [{"id": 708318, "name": "PS-PAR-FR-BWCTL_XE4/1/5", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1347}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/6", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER RENATER SRF9924903 | RENATER Project Circuits ", "circuits": [], "snmp-index": 1274}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/6.278", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RENATER DFN #fra-par_MPVPN_DFN-RENATER_13003 |", "circuits": [{"id": 708358, "name": "FRA-PAR_MPVPN_DFN-RENATER_13003", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1348}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/1/6.1220", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER ESNET RENATER #AMS-PAR-INFINICORTEX-ESNET-RENATER-15030 |", "circuits": [{"id": 707022, "name": "AMS-PAR-INFINICORTEX-ESNET-RENATER-15030", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1349}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/2/0", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY CUSTOMER RENATER P_AE16 SRF16005 | Renater - part of ae16 1", "circuits": [], "snmp-index": 1276}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/2/1", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY CUSTOMER RENATER P_AE16 SRF16005 | Renater - part of ae16 2", "circuits": [], "snmp-index": 1277}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/2/2", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE SUPERPOP P_ae30 | QFX xe-0/0/18", "circuits": [], "snmp-index": 1278}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P7", "circuits": [], "snmp-index": 1279}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/2/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS CORSA P8 | GTS link to CORSA", "circuits": [], "snmp-index": 1280}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/2/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS CORSA P9 | GTS link to CORSA", "circuits": [], "snmp-index": 1281}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/2/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS CORSA P10 | GTS link to CORSA", "circuits": [], "snmp-index": 1282}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1283}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/0", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | NTT Olympics Support", "circuits": [], "snmp-index": 1284}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 0", "circuits": [], "snmp-index": 1285}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 1", "circuits": [], "snmp-index": 1286}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/2.11", "bundle": [], "bundle-parents": [], "description": "GTS_link|PA-9a6811b1b9", "circuits": [{"id": 707197, "name": "LO-0309673A4D", "type": "GTS", "status": "operational"}], "snmp-index": 818}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/2.12", "bundle": [], "bundle-parents": [], "description": "GTS_link|PA-e79f2aeb2c", "circuits": [{"id": 707200, "name": "LO-AB961DBA33", "type": "GTS", "status": "operational"}], "snmp-index": 819}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/2.17", "bundle": [], "bundle-parents": [], "description": "GTS_link|PA-087dedd676", "circuits": [{"id": 707018, "name": "AM-395E786006", "type": "GTS", "status": "operational"}], "snmp-index": 941}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/2.18", "bundle": [], "bundle-parents": [], "description": "GTS_link|PA-5b9ec15486", "circuits": [], "snmp-index": 615}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 2", "circuits": [], "snmp-index": 1287}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | AMS GTS Server #3", "circuits": [], "snmp-index": 1288}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/4.17", "bundle": [], "bundle-parents": [], "description": "GTS_link|PA-85b103145e", "circuits": [{"id": 707031, "name": "AM-FB27182B26", "type": "GTS", "status": "operational"}], "snmp-index": 933}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/5", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT HBKU SRF18083 | Colt ID: XBG/XBG/LE-241593", "circuits": [], "snmp-index": 1289}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/5.2100", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT HBKU #FR_HBKU | ASN34945 | ", "circuits": [{"id": 661713, "name": "FR_HBKU", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1526}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/5.2110", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 HBKU #lon-par_GEANTOPEN_INTERNET2-HBKU_190092 |", "circuits": [{"id": 709340, "name": "LON-PAR_GEANTOPEN_INTERNET2-HBKU_190092", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1527}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/6", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Reserved for GBS ams-par_LOFAR_RENATER-NetherLight_10001", "circuits": [], "snmp-index": 1290}, {"router": "mx1.par.fr.geant.net", "name": "xe-4/3/7", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | Reserved for GBS ams-par_LOFAR_RENATER-NetherLight_10001", "circuits": [], "snmp-index": 1291}, {"router": "mx1.par.fr.geant.net", "name": "xe-7/0/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | TeliaSonera ID: IC-304077 | UNDER TERMINATION", "circuits": [], "snmp-index": 797}, {"router": "mx1.par.fr.geant.net", "name": "xe-7/0/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | TeliaSonera ID: IC-304078 | UNDER TERMINATION", "circuits": [], "snmp-index": 798}, {"router": "mx1.par.fr.geant.net", "name": "xe-7/1/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | TeliaSonera ID: IC-304079 | UNDER TERMINATION", "circuits": [], "snmp-index": 799}, {"router": "mx1.par.fr.geant.net", "name": "xe-7/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 800}, {"router": "mx1.par.fr.geant.net", "name": "so-7/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 911}, {"router": "mx1.par.fr.geant.net", "name": "et-9/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 838}, {"router": "mx1.par.fr.geant.net", "name": "et-10/0/2", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER SWITCH P_AE13 SRF19148 | Circuit ID : CE4 Hu0/0/0/7 ", "circuits": [], "snmp-index": 997}, {"router": "mx1.par.fr.geant.net", "name": "et-10/0/5", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | GTT SRF-21-042 MANLAN - Paris 100Gb needs patching to FR.PAR.PAR1.F00.005.005A.RB.B02-ODF6.U37 P19/20 and LR4 optic Needed", "circuits": [], "snmp-index": 1001}, {"router": "mx1.par.fr.geant.net", "name": "et-10/1/2", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 |Infinera BIL-GRV1 Facing PAR-GRV1 1/1/3 | BIL-PAR", "circuits": [], "snmp-index": 1002}, {"router": "mx1.par.fr.geant.net", "name": "et-10/1/5", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 |Infinera BIL-GRV1 Facing PAR-GRV1 1/1/4 | BIL-PAR", "circuits": [], "snmp-index": 1003}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SERVER 4 | GTS link to Server 4", "circuits": [], "snmp-index": 1194}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/0.12", "bundle": [], "bundle-parents": [], "description": "GTS_link|PA-5b9ec15486", "circuits": [], "snmp-index": 614}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/0.16", "bundle": [], "bundle-parents": [], "description": "GTS_link|PA-9122a99e7c", "circuits": [{"id": 708102, "name": "AM-7D3A8C5FC6", "type": "GTS", "status": "operational"}], "snmp-index": 779}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 5 (BMS)", "circuits": [], "snmp-index": 1195}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/1.10", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS GTS #ams_par-SCION-GTS_20053 |", "circuits": [{"id": 705426, "name": "AMS_PAR-SCION-GTS_20053", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 987}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/1.30", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS GTS #ham_par-SCION-GTS_20055 |", "circuits": [{"id": 705477, "name": "HAM_PAR-SCION-GTS_20055", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 988}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/1.33", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER DFN GTS #ham-par_SCION_GTS-DFN_20021 |", "circuits": [{"id": 705469, "name": "HAM-PAR_SCION_GTS-DFN_20021", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1004}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/1.35", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS SWITCH #par-par_SCION_GTS-SWITCH_19025 |", "circuits": [{"id": 706045, "name": "PAR-PAR_SCION_GTS-SWITCH_19025", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 996}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/1.37", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER BELNET GTS #bru-par_FED4FIRE_GTS_9951467 |", "circuits": [{"id": 706024, "name": "AMS-BRU_FED4FIRE_GTS_9951467", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1012}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/1.1390", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER RENATER GTS #par-par_SCION_GTS-RENATER_20026 |", "circuits": [{"id": 705927, "name": "PAR-PAR_GRID5000_RENATER_GTS_20026", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1005}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 6 (BMS)", "circuits": [], "snmp-index": 1196}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/2.0", "bundle": [], "bundle-parents": [], "description": "GTS_link|PA-c4fc277110", "circuits": [{"id": 709619, "name": "HA-3140E01B69", "type": "GTS", "status": "operational"}], "snmp-index": 767}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SERVER 7 | GTS link to Server 7", "circuits": [], "snmp-index": 1197}, {"router": "mx1.par.fr.geant.net", "name": "et-11/1/0", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | Interoute ID: DANT0/100GbWL/351542 | MAD-PAR", "circuits": [], "snmp-index": 1198}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DTN-Project 10G | Under testing ", "circuits": [], "snmp-index": 1199}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/2/0.702", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #par_fra_DTN_generator  | RARE P4 TESTBED ", "circuits": [{"id": 706947, "name": "PAR_FRA_DTN_GENERATOR", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 984}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL", "circuits": [], "snmp-index": 1200}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL", "circuits": [], "snmp-index": 1201}, {"router": "mx1.par.fr.geant.net", "name": "xe-11/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL", "circuits": [], "snmp-index": 1202}, {"router": "mx1.par.fr.geant.net", "name": "et-11/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DTN-Project 100G | Under testing ", "circuits": [], "snmp-index": 1203}, {"router": "mx1.par.fr.geant.net", "name": "et-11/3/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS DTN-PROJECT SRF0000001 | 100G Testing CONTACT: Richard.Hughes-Jones@geant.org IMPLEMENTED: ????????", "circuits": [], "snmp-index": 616}, {"router": "mx1.par.fr.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-4/0/1", "xe-4/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx1-sw1 (ex3400)", "circuits": [], "snmp-index": 685}, {"router": "mx1.par.fr.geant.net", "name": "ae1.103", "bundle": [], "bundle-parents": ["xe-4/0/1", "xe-4/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #DCN_MANAGEMENT_PAR_FR | DCN MANAGEMENT ", "circuits": [{"id": 702114, "name": "DCN_MANAGEMENT_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 711}, {"router": "mx1.par.fr.geant.net", "name": "ae1.998", "bundle": [], "bundle-parents": ["xe-4/0/1", "xe-4/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-par-fr| SW1-EX3400 MANAGEMENT", "circuits": [{"id": 702119, "name": "EX3400-MANAGEMENT-PAR-FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 739}, {"router": "mx1.par.fr.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mad-par", "circuits": [], "snmp-index": 633}, {"router": "mx1.par.fr.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAD_PAR_IPTRUNK | MAD-PAR |  ", "circuits": [{"id": 708721, "name": "MAD_PAR_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 776}, {"router": "mx1.par.fr.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["et-10/1/2", "et-10/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | bil-par", "circuits": [], "snmp-index": 801}, {"router": "mx1.par.fr.geant.net", "name": "ae4.0", "bundle": [], "bundle-parents": ["et-10/1/2", "et-10/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL_PAR_IPTRUNK | BIL-PAR |  ", "circuits": [], "snmp-index": 803}, {"router": "mx1.par.fr.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["et-3/0/5", "et-3/1/2", "et-3/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE AMS SRF0000001 | lon2-par | Coriant G30 100G|", "circuits": [], "snmp-index": 635}, {"router": "mx1.par.fr.geant.net", "name": "ae5.0", "bundle": [], "bundle-parents": ["et-3/0/5", "et-3/1/2", "et-3/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON2_PAR_IPTRUNK | PAR-LON2 |Coriant G30 100G", "circuits": [{"id": 708706, "name": "LON2_PAR_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 783}, {"router": "mx1.par.fr.geant.net", "name": "ae6", "bundle": [], "bundle-parents": ["et-2/0/5", "et-2/1/2", "et-2/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE PAR SRF0000001 | gen-par | Coriant G30 300G", "circuits": [], "snmp-index": 637}, {"router": "mx1.par.fr.geant.net", "name": "ae6.0", "bundle": [], "bundle-parents": ["et-2/0/5", "et-2/1/2", "et-2/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN_PAR_IPTRUNK | PAR-GEN |Coriant G30 300G", "circuits": [{"id": 708712, "name": "GEN_PAR_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1425}, {"router": "mx1.par.fr.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "LAG CUSTOMER RENATER SRF9921825 |", "circuits": [], "snmp-index": 678}, {"router": "mx1.par.fr.geant.net", "name": "ae12.160", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_GLOBAL CUSTOMER RENATER #RENATER_AP1 | ASN2200 | ", "circuits": [{"id": 661272, "name": "RENATER_AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 763}, {"router": "mx1.par.fr.geant.net", "name": "ae12.161", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_GLOBAL CUSTOMER RENATER #RENATER_AP_RTBH | ASN2200 | For hearing RTBH routes only ", "circuits": [{"id": 661439, "name": "RENATER_AP_RTBH", "type": "GEANT IP", "status": "operational"}], "snmp-index": 855}, {"router": "mx1.par.fr.geant.net", "name": "ae12.333", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_IAS CUSTOMER RENATER #RENATER_AP1_IAS IASPS | ASN2200 ", "circuits": [{"id": 661239, "name": "RENATER_AP1_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 751}, {"router": "mx1.par.fr.geant.net", "name": "ae12.488", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER ESNET #lon-par_NCSA-LAAS_ESNET-RENATER_15057 |", "circuits": [{"id": 706056, "name": "LON-PAR_NCSA-LAAS_ESNET-RENATER_15057", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 937}, {"router": "mx1.par.fr.geant.net", "name": "ae12.519", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER NISN #lon-par_CNES_Renater_NISN_09201 |", "circuits": [{"id": 709305, "name": "LON-PAR_CNES_NISN-RENATER", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 762}, {"router": "mx1.par.fr.geant.net", "name": "ae12.667", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_CLS CUSTOMER RENATER #RENATER_AP1_CLS|ASN2200 | ", "circuits": [{"id": 661289, "name": "RENATER_AP2_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1164}, {"router": "mx1.par.fr.geant.net", "name": "ae12.854", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER RESTENA #fra-par_MISC_RESTENA_RENATER_20030 |", "circuits": [{"id": 705473, "name": "FRA-PAR_MISC_RESTENA_RENATER_20030", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 981}, {"router": "mx1.par.fr.geant.net", "name": "ae12.1382", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_MDVPN CUSTOMER RENATER #RENATER_AP1_BGP_LU_CoC_1 | MD VPN CoC - RENATER", "circuits": [{"id": 661259, "name": "RENATER_AP1_BGP_LU_COC_1", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 850}, {"router": "mx1.par.fr.geant.net", "name": "ae12.1390", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER GTS #par-par_GRiD5000_RENATER_GTS_20026 |", "circuits": [{"id": 705927, "name": "PAR-PAR_GRID5000_RENATER_GTS_20026", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 833}, {"router": "mx1.par.fr.geant.net", "name": "ae12.1391", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER GTS #ams-par_GRiD5000_RENATER_GTS_20026 |", "circuits": [{"id": 706023, "name": "AMS-PAR_GRID5000_RENATER_GTS_20026", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 874}, {"router": "mx1.par.fr.geant.net", "name": "ae12.2200", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER GEANT #AMS-PAR-RENATER-RARE-20070 |", "circuits": [{"id": 705912, "name": "AMS-PAR-RENATER-RARE-20070", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1082}, {"router": "mx1.par.fr.geant.net", "name": "ae12.3005", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_VPLS INFRASTRUCTURE RARE P4 #RARE_PAR| ", "circuits": [{"id": 702089, "name": "RARE_PAR", "type": "L2SERVICES", "status": "operational"}], "snmp-index": 628}, {"router": "mx1.par.fr.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["et-1/0/2", "et-10/0/2"], "description": "LAG CUSTOMER SWITCH SRF9925393 | SWITCH AP2", "circuits": [], "snmp-index": 684}, {"router": "mx1.par.fr.geant.net", "name": "ae13.11", "bundle": [], "bundle-parents": ["et-1/0/2", "et-10/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER GTS SWITCH #par-par_SCION_GTS-SWITCH_19025 |", "circuits": [{"id": 706045, "name": "PAR-PAR_SCION_GTS-SWITCH_19025", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1475}, {"router": "mx1.par.fr.geant.net", "name": "ae13.60", "bundle": [], "bundle-parents": ["et-1/0/2", "et-10/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SWITCH #par-par_MISC_SWITCH-INTERNET2_19116 |", "circuits": [{"id": 661663, "name": "PAR-PAR_MISC_SWITCH-INTERNET2_19116", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 631}, {"router": "mx1.par.fr.geant.net", "name": "ae13.90", "bundle": [], "bundle-parents": ["et-1/0/2", "et-10/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER SWITCH INTERNET2 #par_lon-INTERNET2-SWITCH_19117 |", "circuits": [{"id": 705897, "name": "PAR_LON-INTERNET2-SWITCH_19117", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 755}, {"router": "mx1.par.fr.geant.net", "name": "ae13.100", "bundle": [], "bundle-parents": ["et-1/0/2", "et-10/0/2"], "description": "SRV_GLOBAL CUSTOMER SWITCH #SWITCH_AP2 | ASN559 | ", "circuits": [{"id": 661602, "name": "SWITCH_AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 811}, {"router": "mx1.par.fr.geant.net", "name": "ae13.333", "bundle": [], "bundle-parents": ["et-1/0/2", "et-10/0/2"], "description": "SRV_IAS CUSTOMER SWITCH #SWITCH_AP2_IAS IASPS | ASN559 ", "circuits": [{"id": 661345, "name": "SWITCH_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 806}, {"router": "mx1.par.fr.geant.net", "name": "ae13.3005", "bundle": [], "bundle-parents": ["et-1/0/2", "et-10/0/2"], "description": "SRV_VPLS INFRASTRUCTURE RARE P4 #RARE_PAR| ", "circuits": [], "snmp-index": 821}, {"router": "mx1.par.fr.geant.net", "name": "ae14", "bundle": [], "bundle-parents": ["et-2/0/2"], "description": "LAG CUSTOMER RENATER LHCONE SRF9926739 |", "circuits": [], "snmp-index": 686}, {"router": "mx1.par.fr.geant.net", "name": "ae14.111", "bundle": [], "bundle-parents": ["et-2/0/2"], "description": "SRV_L3VPN CUSTOMER RENATER #RENATER_AP1_IPv4_LHCONE | ASN2200", "circuits": [{"id": 660442, "name": "RENATER_AP1_IPV4_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 657}, {"router": "mx1.par.fr.geant.net", "name": "ae14.116", "bundle": [], "bundle-parents": ["et-2/0/2"], "description": "SRV_L3VPN CUSTOMER RENATER #RENATER_AP1_IPv6_LHCONE | ASN2200", "circuits": [{"id": 661664, "name": "RENATER_AP1_IPV6_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 754}, {"router": "mx1.par.fr.geant.net", "name": "ae15", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "LAG RE_INTERCONNECT MANLAN SRF9929287", "circuits": [], "snmp-index": 687}, {"router": "mx1.par.fr.geant.net", "name": "ae15.32", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_GLOBAL CUSTOMER MANLAN #MANLAN_Notification_VLAN| Notification VLAN Only (FR-MANLAN) ", "circuits": [], "snmp-index": 1246}, {"router": "mx1.par.fr.geant.net", "name": "ae15.60", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SWITCH #par-par_MISC_SWITCH-INTERNET2_19116 |", "circuits": [{"id": 661663, "name": "PAR-PAR_MISC_SWITCH-INTERNET2_19116", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 647}, {"router": "mx1.par.fr.geant.net", "name": "ae15.80", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SWITCH #gen-par_MISC_SWITCH-INTERNET2_18046 |", "circuits": [{"id": 705479, "name": "GEN-PAR_MISC_SWITCH-INTERNET2_18046", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1392}, {"router": "mx1.par.fr.geant.net", "name": "ae15.102", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #FR-INTERNET2 | ASN11537 | MANLAN ID: 102 ", "circuits": [{"id": 661992, "name": "FR-INTERNET2", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 875}, {"router": "mx1.par.fr.geant.net", "name": "ae15.204", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_GLOBAL RE_INTERCONNECT CANARIE #FR_CANARIE_vlan204 | ASN6509 | MANLAN ID: 204 ", "circuits": [{"id": 660638, "name": "FR_CANARIE_VLAN204", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 877}, {"router": "mx1.par.fr.geant.net", "name": "ae15.205", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_GLOBAL RE_INTERCONNECT CANARIE #FR_CANARIE_vlan205 | ASN6509 | MANLAN ID: 205 ", "circuits": [{"id": 660632, "name": "FR_CANARIE_VLAN205", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 867}, {"router": "mx1.par.fr.geant.net", "name": "ae15.207", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_GLOBAL RE_INTERCONNECT SINET #FR_SINET | ASN2907 | MANLAN ID: 207 ", "circuits": [{"id": 661583, "name": "FR_SINET", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 869}, {"router": "mx1.par.fr.geant.net", "name": "ae15.212", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #FR_ESNET | ASN293 | MANLAN ID: 212 ", "circuits": [{"id": 661489, "name": "FR_ESNET", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 871}, {"router": "mx1.par.fr.geant.net", "name": "ae15.221", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_GLOBAL RE_INTERCONNECT TWAREN #FR_TWAREN | ASN7539 | MANLAN ID: 221 ", "circuits": [{"id": 661630, "name": "FR_TWAREN", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 873}, {"router": "mx1.par.fr.geant.net", "name": "ae15.300", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER BELNET INTERNET2 #ams-bru_GENI_BELNET-I2_13012 |", "circuits": [{"id": 706804, "name": "AMS-BRU_GENI_BELNET-I2_13012", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 903}, {"router": "mx1.par.fr.geant.net", "name": "ae15.350", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SWITCH #gen-par_SYNGENTA_SWITCH-INTERNET2_17045 |", "circuits": [{"id": 705424, "name": "GEN-PAR_SYNGENTA_SWITCH-INTERNET2_17045", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1099}, {"router": "mx1.par.fr.geant.net", "name": "ae15.498", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_GLOBAL CUSTOMER EUMETSAT #EUMETSAT_5G-Link-NOAADenver| EUMETSAT 5G link to NOAA Denver ", "circuits": [{"id": 661318, "name": "EUMET-JEUNO-PAR-DENV-16026", "type": "EUMETSAT INTERNATIONAL", "status": "operational"}], "snmp-index": 828}, {"router": "mx1.par.fr.geant.net", "name": "ae15.500", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_GLOBAL CUSTOMER INTERNET2 #INTERNET2_TESTVLAN-RTT| TEST VLAN FOR NYC-PAR RTT ", "circuits": [{"id": 677814, "name": "INTERNET2_TESTVLAN-RTT", "type": "GEANT IP", "status": "operational"}], "snmp-index": 858}, {"router": "mx1.par.fr.geant.net", "name": "ae15.610", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_GLOBAL RE_INTERCONNECT CLARA #FR_CLARA | ASN27750 | ", "circuits": [{"id": 660557, "name": "FR_CLARA", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1071}, {"router": "mx1.par.fr.geant.net", "name": "ae15.620", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER BELNET RNP #bru-par_IMINDS_Belnet-RNP_1505 |", "circuits": [{"id": 706027, "name": "BRU-PAR_IMINDS_BELNET-RNP_1505", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1096}, {"router": "mx1.par.fr.geant.net", "name": "ae15.903", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #par-par_MISC_GEANT-INTERNET2_9940539 |", "circuits": [{"id": 705916, "name": "PAR-PAR_MISC_GEANT-INTERNET2_9940539", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1210}, {"router": "mx1.par.fr.geant.net", "name": "ae15.1125", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER BELNET GTS #bru-par_iMINDS_iMINDS-GTS_15008 |", "circuits": [{"id": 706950, "name": "BRU-PAR_IMINDS_IMINDS-GTS_15008", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 889}, {"router": "mx1.par.fr.geant.net", "name": "ae15.1916", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER RARE INTERNET2_RNP #AMS-PAR-RARE-INTERNET2-RNP-20061 |", "circuits": [{"id": 705913, "name": "AMS-PAR-RARE-INTERNET2-RNP-20061", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1087}, {"router": "mx1.par.fr.geant.net", "name": "ae15.2001", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L3VPN RE_INTERCONNECT INTERNET2 #INTERNET2_PAR_LHCONE | ASN11537", "circuits": [{"id": 660639, "name": "INTERNET2_PAR_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 885}, {"router": "mx1.par.fr.geant.net", "name": "ae15.2004", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L3VPN RE_INTERCONNECT ESNET #ESNET_PAR_LHCONE | ASN293", "circuits": [{"id": 661188, "name": "ESNET_PAR_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 879}, {"router": "mx1.par.fr.geant.net", "name": "ae15.2015", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L3VPN RE_INTERCONNECT CLARA #REDCLARA_PAR_LHCONE | ASN27750", "circuits": [{"id": 661556, "name": "REDCLARA_PAR_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1083}, {"router": "mx1.par.fr.geant.net", "name": "ae15.2023", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET INTERNET2 #AMS-PAR-GEANTOPEN-NORDUNET-INTERNET2-17008 |", "circuits": [{"id": 705899, "name": "AMS-PAR-GEANTOPEN-NORDUNET-INTERNET2-17008", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 962}, {"router": "mx1.par.fr.geant.net", "name": "ae15.2128", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER CANARIE SURFNET | #par_par-CANARIE_SURFNET_20058", "circuits": [{"id": 679228, "name": "PAR_PAR-CANARIE_SURFNET", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1067}, {"router": "mx1.par.fr.geant.net", "name": "ae15.2200", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L3VPN RE_INTERCONNECT CANARIE #CANARIE_PAR_LHCONE | ASN6509", "circuits": [{"id": 661404, "name": "CANARIE_PAR_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 881}, {"router": "mx1.par.fr.geant.net", "name": "ae15.2511", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L3VPN RE_INTERCONNECT SINET #SINET_PAR_LHCONE | ASN2907", "circuits": [{"id": 660633, "name": "SINET_PAR_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 883}, {"router": "mx1.par.fr.geant.net", "name": "ae15.3018", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-PAR-SINET-SD-WAN-SINET-SINET-17091 |", "circuits": [{"id": 705907, "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17091", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1081}, {"router": "mx1.par.fr.geant.net", "name": "ae15.3020", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-PAR-SINET-SD-WAN-SINET-SINET-17090 |", "circuits": [{"id": 705908, "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17090", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1080}, {"router": "mx1.par.fr.geant.net", "name": "ae15.3151", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER SINET #ams-gen_Grid5000_Renater-SINET_07201 |", "circuits": [{"id": 705429, "name": "AMS-GEN_GRID5000_RENATER-SINET_07201", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 893}, {"router": "mx1.par.fr.geant.net", "name": "ae15.3152", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER DFN SINET #fra-par_JAXA_DFN-SINET_14005 |", "circuits": [{"id": 706059, "name": "FRA-PAR_JAXA_DFN-SINET_14005", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 895}, {"router": "mx1.par.fr.geant.net", "name": "ae15.3157", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 RENATER #gen-par_LSST_RENATER-INTERNET2_16005 |", "circuits": [{"id": 661892, "name": "GEN-PAR_LSST_RENATER-INTERNET2_16005", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 518}, {"router": "mx1.par.fr.geant.net", "name": "ae15.3400", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT RE_INTERCONNECT ESNET UBUNTUNET #ams-lon_ESnet-UbuntuNet_14020 |", "circuits": [{"id": 706028, "name": "AMS-LON_ESNET-UBUNTUNET_14020", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 897}, {"router": "mx1.par.fr.geant.net", "name": "ae15.3500", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT INFRASTRUCTURE GTS INTERNET2 | #ams-bra_TAAS_TAAS-I2(3500-3599)_14022", "circuits": [{"id": 707113, "name": "AMS-BRA-GTS-I2(3500-3599)-14022", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 899}, {"router": "mx1.par.fr.geant.net", "name": "ae15.3600", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER GARR GTS #ams-ams_DREAMER_GARR-GTS_15033 |", "circuits": [{"id": 661516, "name": "AMS-AMS_DREAMER_GARR-GTS_15033", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 901}, {"router": "mx1.par.fr.geant.net", "name": "ae15.3901", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #par-par_GEANTOpen_SINET_SINET_19033 |", "circuits": [{"id": 706599, "name": "PAR-PAR_GEANTOPEN_SINET_SINET_19033", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1451}, {"router": "mx1.par.fr.geant.net", "name": "ae16", "bundle": [], "bundle-parents": ["xe-4/2/0", "xe-4/2/1"], "description": "LAG CUSTOMER RENATER SRF9916005|", "circuits": [], "snmp-index": 688}, {"router": "mx1.par.fr.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["et-3/0/2"], "description": "LAG CUSTOMER SURFNET GEO SRF18071|", "circuits": [], "snmp-index": 689}, {"router": "mx1.par.fr.geant.net", "name": "ae17.2128", "bundle": [], "bundle-parents": ["et-3/0/2"], "description": "SRV_L2CIRCUIT  CUSTOMER CANARIE SURFNET   | #par_par-CANARIE_SURFNET", "circuits": [{"id": 679228, "name": "PAR_PAR-CANARIE_SURFNET", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1068}, {"router": "mx1.par.fr.geant.net", "name": "ae17.3901", "bundle": [], "bundle-parents": ["et-3/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #par-par_GEANTOpen_SINET_SINET_19033 |", "circuits": [{"id": 706599, "name": "PAR-PAR_GEANTOPEN_SINET_SINET_19033", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 1485}, {"router": "mx1.par.fr.geant.net", "name": "ae18", "bundle": [], "bundle-parents": ["et-1/0/5"], "description": "LAG CUSTOMER RESTENA AP2 SRF19026 |", "circuits": [], "snmp-index": 690}, {"router": "mx1.par.fr.geant.net", "name": "ae18.333", "bundle": [], "bundle-parents": ["et-1/0/5"], "description": "SRV_IAS CUSTOMER RESTENA #RESTENA_AP2_IAS IASPS | ASN2602 ", "circuits": [{"id": 660452, "name": "RESTENA_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 748}, {"router": "mx1.par.fr.geant.net", "name": "ae18.667", "bundle": [], "bundle-parents": ["et-1/0/5"], "description": "SRV_CLS CUSTOMER RESTENA #RESTENA_AP2_CLS|ASN2602 | ", "circuits": [{"id": 677403, "name": "RESTENA_AP2_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 577}, {"router": "mx1.par.fr.geant.net", "name": "ae18.2603", "bundle": [], "bundle-parents": ["et-1/0/5"], "description": "SRV_GLOBAL CUSTOMER RESTENA #RESTENA_AP2 | ASN2602 | ", "circuits": [{"id": 661531, "name": "RESTENA_AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 749}, {"router": "mx1.par.fr.geant.net", "name": "ae30", "bundle": [], "bundle-parents": ["xe-4/0/4", "xe-4/0/5", "xe-4/1/2", "xe-4/2/2"], "description": "LAG INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | QFX1.PAR.FR SRX BYPASS", "circuits": [], "snmp-index": 702}, {"router": "mx1.par.fr.geant.net", "name": "ae30.991", "bundle": [], "bundle-parents": ["xe-4/0/4", "xe-4/0/5", "xe-4/1/2", "xe-4/2/2"], "description": "SRV_GLOBAL INFRASTRUCTURE Access #CORIANT_TNMS_PAR_FR | CORIANT TNMS MANAGEMENT", "circuits": [{"id": 661708, "name": "CORIANT_TNMS_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 764}, {"router": "mx1.par.fr.geant.net", "name": "ae30.2001", "bundle": [], "bundle-parents": ["xe-4/0/4", "xe-4/0/5", "xe-4/1/2", "xe-4/2/2"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #ESXI_Management_Par| ESXI MANAGEMENT", "circuits": [{"id": 661967, "name": "ESXI_MANAGEMENT_PAR", "type": "POP LAN LINK", "status": "operational"}], "snmp-index": 964}, {"router": "mx1.par.fr.geant.net", "name": "ae30.3000", "bundle": [], "bundle-parents": ["xe-4/0/4", "xe-4/0/5", "xe-4/1/2", "xe-4/2/2"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VM_DataNetwork_Par | VM DATA NETWORK", "circuits": [{"id": 661603, "name": "VM_DATANETWORK_PAR", "type": "POP LAN LINK", "status": "operational"}], "snmp-index": 1026}, {"router": "mx1.par.fr.geant.net", "name": "ae30.3001", "bundle": [], "bundle-parents": ["xe-4/0/4", "xe-4/0/5", "xe-4/1/2", "xe-4/2/2"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_NAGIOS_PAR_FR | NAGIOS gateway for taas-control VRF", "circuits": [{"id": 661928, "name": "TAAS_CONTROL_NAGIOS_PAR_FR", "type": "L3-VPN", "status": "operational"}], "snmp-index": 846}, {"router": "mx1.par.fr.geant.net", "name": "ae30.3002", "bundle": [], "bundle-parents": ["xe-4/0/4", "xe-4/0/5", "xe-4/1/2", "xe-4/2/2"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-latency-network-par-fr | Latency network", "circuits": [{"id": 661360, "name": "PS-LATENCY-NETWORK-PAR-FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1467}, {"router": "mx1.par.fr.geant.net", "name": "ae30.3003", "bundle": [], "bundle-parents": ["xe-4/0/4", "xe-4/0/5", "xe-4/1/2", "xe-4/2/2"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-throughput-network-par-fr | Throughput network", "circuits": [{"id": 661273, "name": "PS-PAR-FR-THROUGHPUT-TESTVM", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1468}, {"router": "mx1.par.fr.geant.net", "name": "ae30.3004", "bundle": [], "bundle-parents": ["xe-4/0/4", "xe-4/0/5", "xe-4/1/2", "xe-4/2/2"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_RANCID_PAR_FR | RANCID gateway for taas-control VRF", "circuits": [{"id": 661323, "name": "TAAS_CONTROL_RANCID_LOGICAL_INTERFACE_PAR_FR", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1474}, {"router": "mx1.par.fr.geant.net", "name": "ae30.3006", "bundle": [], "bundle-parents": ["xe-4/0/4", "xe-4/0/5", "xe-4/1/2", "xe-4/2/2"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_IMS_MEDIATION_PAR_FR | IMS Mediation Gateway for taas-control VRF", "circuits": [{"id": 677387, "name": "TAAS_CONTROL_IMS_MEDIATION_LOGICAL_INTERFACE_PAR_FR", "type": "L3-VPN", "status": "operational"}], "snmp-index": 812}, {"router": "mx1.par.fr.geant.net", "name": "ae30.3007", "bundle": [], "bundle-parents": ["xe-4/0/4", "xe-4/0/5", "xe-4/1/2", "xe-4/2/2"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX_VPAR_PAR_FR | Infoblox vPAR", "circuits": [{"id": 678600, "name": "INFOBLOX_VPAR_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1014}, {"router": "mx1.par.fr.geant.net", "name": "ae30.3008", "bundle": [], "bundle-parents": ["xe-4/0/4", "xe-4/0/5", "xe-4/1/2", "xe-4/2/2"], "description": "SRV_GLOBAL INFRASTRUCTURE Access link DNS #INFOBLOX_TEST_PAR_FR | TEST - Infoblox GRID /// NMAAS IS-IS Listener", "circuits": [{"id": 678812, "name": "INFOBLOX_TEST_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1060}, {"router": "mx1.par.fr.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 841}, {"router": "mx1.par.fr.geant.net", "name": "irb.105", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SPLUNK_PAR_FR | Splunk1 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20160825", "circuits": [], "snmp-index": 958}, {"router": "mx1.par.fr.geant.net", "name": "irb.998", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #QFX_Management_Par| QFX MANAGEMENT", "circuits": [], "snmp-index": 949}, {"router": "mx1.par.fr.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-par-fr-mgmt-vrf-vlan999|", "circuits": [], "snmp-index": 738}, {"router": "mx1.par.fr.geant.net", "name": "irb.3000", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VM_DataNetwork_Par_IRB | VM DATA NETWORK", "circuits": [{"id": 661603, "name": "VM_DATANETWORK_PAR", "type": "POP LAN LINK", "status": "operational"}], "snmp-index": 972}, {"router": "mx1.par.fr.geant.net", "name": "irb.3001", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_NAGIOS_PAR_FR_LOGICAL_INTERFACE_PAR_FR | NAGIOS gateway for taas-control VRF", "circuits": [{"id": 661928, "name": "TAAS_CONTROL_NAGIOS_PAR_FR", "type": "L3-VPN", "status": "operational"}], "snmp-index": 665}, {"router": "mx1.par.fr.geant.net", "name": "irb.3002", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-par-fr-latency-testvm | Perfsonar test VMs - latency measurement VLAN", "circuits": [{"id": 661360, "name": "PS-LATENCY-NETWORK-PAR-FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1457}, {"router": "mx1.par.fr.geant.net", "name": "irb.3003", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-throughput-network-par-fr | Perfsonar test VMs - throughput measurement VLAN", "circuits": [{"id": 661273, "name": "PS-PAR-FR-THROUGHPUT-TESTVM", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1458}, {"router": "mx1.par.fr.geant.net", "name": "irb.3004", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_RANCID_LOGICAL_INTERFACE_PAR_FR | RANCID gateway for taas-control VRF", "circuits": [{"id": 661323, "name": "TAAS_CONTROL_RANCID_LOGICAL_INTERFACE_PAR_FR", "type": "L3-VPN", "status": "operational"}], "snmp-index": 574}, {"router": "mx1.par.fr.geant.net", "name": "irb.3006", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_IMS_MEDIATION_LOGICAL_INTERFACE_PAR_FR | IMS Mediation Gateway for taas-control VRF", "circuits": [{"id": 677387, "name": "TAAS_CONTROL_IMS_MEDIATION_LOGICAL_INTERFACE_PAR_FR", "type": "L3-VPN", "status": "operational"}], "snmp-index": 782}, {"router": "mx1.par.fr.geant.net", "name": "irb.3008", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS NMAAS #nmaas-isis-listener | NMAAS IS-IS Listener Contact: niall.donaghy@geant.org", "circuits": [{"id": 678812, "name": "INFOBLOX_TEST_PAR_FR", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 630}, {"router": "mx1.par.fr.geant.net", "name": "lt-0/3/10.31", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN | VRR to GEANT", "circuits": [], "snmp-index": 714}, {"router": "mx1.lis.pt.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 658}, {"router": "mx1.lis.pt.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-lis-pt-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710663, "name": "BGPPEERING-LIS-PT-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 661}, {"router": "mx1.lis.pt.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #LIS-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 662}, {"router": "mx1.lis.pt.geant.net", "name": "xe-0/0/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER FCCN P_AE10 SRF9928601 ", "circuits": [], "snmp-index": 554}, {"router": "mx1.lis.pt.geant.net", "name": "xe-0/0/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |", "circuits": [], "snmp-index": 555}, {"router": "mx1.lis.pt.geant.net", "name": "xe-0/1/0", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9945509 | PT ID: LIS/FCC-LON/LD8 10G0003 LIS-LON", "circuits": [], "snmp-index": 556}, {"router": "mx1.lis.pt.geant.net", "name": "xe-0/1/1", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9943311 | PT ID: LIS/FCC-LON/LD8 10G0001 LIS-LON", "circuits": [], "snmp-index": 557}, {"router": "mx1.lis.pt.geant.net", "name": "xe-1/0/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |", "circuits": [], "snmp-index": 550}, {"router": "mx1.lis.pt.geant.net", "name": "xe-1/0/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER FCCN P_AE10 SRF9913981 ", "circuits": [], "snmp-index": 551}, {"router": "mx1.lis.pt.geant.net", "name": "xe-1/1/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER FCCN P_AE10 SRF18096 ", "circuits": [], "snmp-index": 552}, {"router": "mx1.lis.pt.geant.net", "name": "xe-1/1/1", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9943313 | PT ID: LIS/FCC-LON/LD8 10G0002 LIS-LON", "circuits": [], "snmp-index": 553}, {"router": "mx1.lis.pt.geant.net", "name": "xe-2/0/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |", "circuits": [], "snmp-index": 679}, {"router": "mx1.lis.pt.geant.net", "name": "xe-2/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 680}, {"router": "mx1.lis.pt.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 681}, {"router": "mx1.lis.pt.geant.net", "name": "xe-2/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 682}, {"router": "mx1.lis.pt.geant.net", "name": "xe-3/0/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER FCCN P_AE10 SRF19080 ", "circuits": [], "snmp-index": 703}, {"router": "mx1.lis.pt.geant.net", "name": "xe-3/0/1", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9949500 | PT ID: LIS/FCC-LON/LD8 10G0004 LIS-LON", "circuits": [], "snmp-index": 704}, {"router": "mx1.lis.pt.geant.net", "name": "xe-3/0/2", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |", "circuits": [], "snmp-index": 705}, {"router": "mx1.lis.pt.geant.net", "name": "xe-3/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 706}, {"router": "mx1.lis.pt.geant.net", "name": "et-3/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 707}, {"router": "mx1.lis.pt.geant.net", "name": "xe-3/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 708}, {"router": "mx1.lis.pt.geant.net", "name": "xe-3/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 709}, {"router": "mx1.lis.pt.geant.net", "name": "xe-3/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 710}, {"router": "mx1.lis.pt.geant.net", "name": "xe-3/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 711}, {"router": "mx1.lis.pt.geant.net", "name": "et-3/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 712}, {"router": "mx1.lis.pt.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-1/0/0", "xe-2/0/0", "xe-3/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE LIS SRF0000001 | lis-lis", "circuits": [], "snmp-index": 526}, {"router": "mx1.lis.pt.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-1/0/0", "xe-2/0/0", "xe-3/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS_LIS_IPTRUNK | LIS-LIS |  ", "circuits": [{"id": 708718, "name": "LIS_LIS_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 623}, {"router": "mx1.lis.pt.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-1/1/1", "xe-3/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE LON SRF0000001 | lis-lon", "circuits": [], "snmp-index": 531}, {"router": "mx1.lis.pt.geant.net", "name": "ae5.0", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-1/1/1", "xe-3/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS_LON_IPTRUNK | LON-LIS |  ", "circuits": [{"id": 708723, "name": "LIS_LON_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 534}, {"router": "mx1.lis.pt.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-1/1/0", "xe-3/0/0"], "description": "LAG CUSTOMER FCCN SRF9928603 ", "circuits": [], "snmp-index": 538}, {"router": "mx1.lis.pt.geant.net", "name": "ae10.333", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-1/1/0", "xe-3/0/0"], "description": "SRV_IAS CUSTOMER FCCN #FCCN-AP2-IAS IASGWS | ASN1930 ", "circuits": [{"id": 661222, "name": "FCCN-AP2-IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 644}, {"router": "mx1.lis.pt.geant.net", "name": "ae10.1931", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-1/1/0", "xe-3/0/0"], "description": "SRV_GLOBAL CUSTOMER FCCN #FCCN-AP2 | ASN1930  ", "circuits": [{"id": 660387, "name": "FCCN-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 635}, {"router": "mx1.lis.pt.geant.net", "name": "ae10.1934", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-1/1/0", "xe-3/0/0"], "description": "SRV_MDVPN CUSTOMER FCCN #FCCN_AP_B_BGP_LU_CoC ", "circuits": [{"id": 700173, "name": "FCCN_AP_B_BGP_LU_COC", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 754}, {"router": "mx1.lis.pt.geant.net", "name": "ae10.1944", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-1/1/0", "xe-3/0/0"], "description": "SRV_GCS CUSTOMER FCCN #FCCN_NoveSBE_ExpressRoute_Vlan1944 UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706526, "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 740}, {"router": "mx1.lis.pt.geant.net", "name": "ae10.1946", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-1/1/0", "xe-3/0/0"], "description": "SRV_GCS CUSTOMER FCCN #FCCN_IPP_ExpressRoute_Vlan1946 UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706996, "name": "FCCN-IPP-EXPRESSROUTE-VLAN1946", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 745}, {"router": "mx1.lis.pt.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 666}, {"router": "rt2.rig.lv.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 548}, {"router": "rt2.rig.lv.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-rig-lv-rt2-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710696, "name": "BGPPEERING-RIG-LV-RT2-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 553}, {"router": "rt2.rig.lv.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #RIG-IAS-RE-Peering_rt2 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 558}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/0/0:0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | RETN ID: WL-903369-2", "circuits": [], "snmp-index": 527}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/0/0:1", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | RETN ID: WL-903369-1", "circuits": [], "snmp-index": 528}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/0/0:2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | RETN ID:WL-903369-3", "circuits": [], "snmp-index": 529}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/0/0:3", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | RETN ID:WL-903369-4", "circuits": [], "snmp-index": 530}, {"router": "rt2.rig.lv.geant.net", "name": "et-0/0/2", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER LAT SRF9912921 | LAT Backup", "circuits": [], "snmp-index": 576}, {"router": "rt2.rig.lv.geant.net", "name": "et-0/0/2.33", "bundle": [], "bundle-parents": [], "description": "SRV_IAS CUSTOMER LAT #LAT_AP2_IAS IASPS | ASN5538 ", "circuits": [{"id": 679358, "name": "LAT_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 579}, {"router": "rt2.rig.lv.geant.net", "name": "et-0/0/2.83", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER LAT #LAT_AP2 | ASN5538 | ", "circuits": [{"id": 679357, "name": "LAT_AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 580}, {"router": "rt2.rig.lv.geant.net", "name": "et-0/0/3", "bundle": ["ae1"], "bundle-parents": [], "description": " PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | RIG-RIG-LL1", "circuits": [], "snmp-index": 566}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 534}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 535}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 536}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 537}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 538}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 539}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/1/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 540}, {"router": "rt2.rig.lv.geant.net", "name": "xe-0/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 541}, {"router": "rt2.rig.lv.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-0/0/3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | rig-rig", "circuits": [], "snmp-index": 561}, {"router": "rt2.rig.lv.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-0/0/3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RIG-RIG-IPTRUNK | RIG-RIG |", "circuits": [{"id": 708715, "name": "RIG-RIG-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 564}, {"router": "rt2.rig.lv.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | tal-rig", "circuits": [], "snmp-index": 582}, {"router": "rt2.rig.lv.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RIG_TAL_IPTRUNK | TAL-RIG |  ", "circuits": [{"id": 709270, "name": "RIG_TAL_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 587}, {"router": "rt2.rig.lv.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 552}, {"router": "mx2.zag.hr.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 710}, {"router": "mx2.zag.hr.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-zag-hr-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710703, "name": "BGPPEERING-ZAG-HR-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 713}, {"router": "mx2.zag.hr.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #ZAG-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 714}, {"router": "mx2.zag.hr.geant.net", "name": "xe-0/0/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF9919883 | vie-zag ip1", "circuits": [], "snmp-index": 568}, {"router": "mx2.zag.hr.geant.net", "name": "xe-0/0/1", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF9919733 | bud-zag ip1", "circuits": [], "snmp-index": 569}, {"router": "mx2.zag.hr.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | MX204 10Gb Connection", "circuits": [], "snmp-index": 572}, {"router": "mx2.zag.hr.geant.net", "name": "xe-0/1/1", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER CARNET P_AE11 SRF9926177 | CARnet AP2 #2 part of ae11", "circuits": [], "snmp-index": 573}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | to ge1.hr.geant.net - a Cisco 3524 in Rack 10", "circuits": [], "snmp-index": 578}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/2/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 579}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/2/2", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 580}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF0000001 | ZAG01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 581}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 582}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 583}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 594}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 602}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 603}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 605}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF0000001 | ZAG01-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 642}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL", "circuits": [], "snmp-index": 653}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 654}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 655}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 656}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY PRIVATE OPTIMA-TELEKOM SRF9928535 | EduZone", "circuits": [{"id": 708280, "name": "HR-EDUZONE", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 657}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/3/5.0", "bundle": [], "bundle-parents": [], "description": "SRV_IAS PRIVATE OPTIMA-TELEKOM #HR-EduZone | For Eduzone", "circuits": [{"id": 708280, "name": "HR-EDUZONE", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 683}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 671}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 673}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 679}, {"router": "mx2.zag.hr.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Former C1N1", "circuits": [], "snmp-index": 681}, {"router": "mx2.zag.hr.geant.net", "name": "xe-1/0/0", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER CARNET P_AE11 SRF9919603 | CARnet AP2 #1 part of ae11", "circuits": [], "snmp-index": 548}, {"router": "mx2.zag.hr.geant.net", "name": "xe-1/0/1", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF9919805 | bud-zag ip2", "circuits": [], "snmp-index": 549}, {"router": "mx2.zag.hr.geant.net", "name": "xe-1/1/0", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER CARNET P_AE11 SRF19139 | CARnet AP2 LL#4 part of ae11", "circuits": [], "snmp-index": 552}, {"router": "mx2.zag.hr.geant.net", "name": "xe-1/1/1", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF9919903 | vie-zag ip2", "circuits": [], "snmp-index": 553}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/0/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF9951063 | vie-zag ip3", "circuits": [], "snmp-index": 731}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/0/1", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF9951065 | vie-zag ip4", "circuits": [], "snmp-index": 732}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/0/2", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER CARNET P_AE11 SRF19139 | CARNet AP2 LL#3 part of ae11", "circuits": [], "snmp-index": 733}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 734}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/0/4", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF9951069 | bud-zag ip3", "circuits": [], "snmp-index": 735}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/0/5", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 SRF9951071 | bud-zag ip4", "circuits": [], "snmp-index": 736}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 737}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 738}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | SETCOR peering", "circuits": [], "snmp-index": 739}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 740}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 741}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 742}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 743}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 744}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/1/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 745}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 746}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 747}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 748}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 749}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 750}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 751}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 752}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 753}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 754}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 762}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 755}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 756}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 757}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 758}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 759}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 760}, {"router": "mx2.zag.hr.geant.net", "name": "xe-2/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 761}, {"router": "mx2.zag.hr.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/1/1", "xe-2/0/0", "xe-2/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF9925405| vie-zag", "circuits": [], "snmp-index": 586}, {"router": "mx2.zag.hr.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/1/1", "xe-2/0/0", "xe-2/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #VIE_ZAG_IPTRUNK | VIE-ZAG |  ", "circuits": [{"id": 708748, "name": "VIE_ZAG_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 677}, {"router": "mx2.zag.hr.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-1/0/1", "xe-2/0/4", "xe-2/0/5"], "description": "LAG INFRASTRUCTURE BACKBONE SRF9925409| bud-zag", "circuits": [], "snmp-index": 588}, {"router": "mx2.zag.hr.geant.net", "name": "ae4.0", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-1/0/1", "xe-2/0/4", "xe-2/0/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-ZAG-IPTRUNK| BUD-ZAG |  ", "circuits": [{"id": 708709, "name": "BUD-ZAG-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 645}, {"router": "mx2.zag.hr.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-1/0/0", "xe-1/1/0", "xe-2/0/2"], "description": "LAG CUSTOMER CARNET SRF9926179 | CARNet AP2", "circuits": [], "snmp-index": 618}, {"router": "mx2.zag.hr.geant.net", "name": "ae11.36", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-1/0/0", "xe-1/1/0", "xe-2/0/2"], "description": "SRV_GLOBAL CUSTOMER CARNET #CARNET-AP2 | ASN2108 | ", "circuits": [{"id": 661333, "name": "CARNET-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 660}, {"router": "mx2.zag.hr.geant.net", "name": "ae11.37", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-1/0/0", "xe-1/1/0", "xe-2/0/2"], "description": "SRV_MDVPN CUSTOMER CARNET #CARnet_AP2_BGP_LU_CoC | MD VPN CoC - NREN", "circuits": [{"id": 661437, "name": "CARNET_AP2_BGP_LU_COC", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 659}, {"router": "mx2.zag.hr.geant.net", "name": "ae11.333", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-1/0/0", "xe-1/1/0", "xe-2/0/2"], "description": "SRV_IAS CUSTOMER CARNET #CARNET_AP2_IAS IASPS | ASN2108 ", "circuits": [{"id": 661488, "name": "CARNET_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 652}, {"router": "mx2.zag.hr.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 649}, {"router": "mx2.zag.hr.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-zag-hr-mgmt-vrf-vlan999", "circuits": [], "snmp-index": 674}, {"router": "mx2.bra.sk.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE", "circuits": [], "snmp-index": 833}, {"router": "mx2.bra.sk.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-bra-sk-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710670, "name": "BGPPEERING-BRA-SK-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 834}, {"router": "mx2.bra.sk.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #BRA-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 835}, {"router": "mx2.bra.sk.geant.net", "name": "xe-0/0/0", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | bra-vie ip3", "circuits": [], "snmp-index": 554}, {"router": "mx2.bra.sk.geant.net", "name": "xe-0/0/1", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER SANET P_AE13 SRF9917823 |", "circuits": [], "snmp-index": 555}, {"router": "mx2.bra.sk.geant.net", "name": "xe-0/1/0", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | bra-vie ip1", "circuits": [], "snmp-index": 556}, {"router": "mx2.bra.sk.geant.net", "name": "xe-0/1/1", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 | bra-vie ip2", "circuits": [], "snmp-index": 557}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915897 | BRA01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 558}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | SuperPOP Backup Node iDRAC", "circuits": [{"id": 708259, "name": "VEEAMSERVER-BRA-IDRAC", "type": "POP LAN LINK", "status": "operational"}], "snmp-index": 559}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VEEAMServer-Bra-IDRAC | SuperPOP Backup Node iDRAC", "circuits": [{"id": 708259, "name": "VEEAMSERVER-BRA-IDRAC", "type": "POP LAN LINK", "status": "operational"}], "snmp-index": 729}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 560}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 561}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P7", "circuits": [], "snmp-index": 562}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P8", "circuits": [], "snmp-index": 563}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | OPENFLOW port for virtual switch OF control", "circuits": [], "snmp-index": 564}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS TAAS SRF9914022 | TAAS-GENI interface SB", "circuits": [], "snmp-index": 565}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/7.3500", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE TAAS INTERNET2 #ams-bra-GTS-I2(3500-3599)-14022 |", "circuits": [{"id": 707113, "name": "AMS-BRA-GTS-I2(3500-3599)-14022", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 693}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS TAAS SRF0000001 | TaaS control", "circuits": [], "snmp-index": 566}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/8.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #GTS-Bratislava-Resources | Was POP LAN link in OpsDB", "circuits": [], "snmp-index": 688}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 567}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915899 | BRA01-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 568}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access", "circuits": [], "snmp-index": 569}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access", "circuits": [], "snmp-index": 570}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 571}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 572}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 573}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 574}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 575}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 576}, {"router": "mx2.bra.sk.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | MGMT interface for corsa", "circuits": [], "snmp-index": 577}, {"router": "mx2.bra.sk.geant.net", "name": "xe-1/0/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |", "circuits": [], "snmp-index": 550}, {"router": "mx2.bra.sk.geant.net", "name": "xe-1/0/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |", "circuits": [], "snmp-index": 551}, {"router": "mx2.bra.sk.geant.net", "name": "xe-1/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL | Reserved to MX204-1 xe-1/0/0", "circuits": [], "snmp-index": 552}, {"router": "mx2.bra.sk.geant.net", "name": "xe-1/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL | Reserved to MX204-2 xe-1/0/0", "circuits": [], "snmp-index": 553}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/0/0", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | R730XD NIC1", "circuits": [], "snmp-index": 592}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/0/1", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | R730XD NIC2", "circuits": [], "snmp-index": 602}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P1", "circuits": [], "snmp-index": 625}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P2", "circuits": [], "snmp-index": 722}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 723}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 724}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/0/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 0", "circuits": [], "snmp-index": 725}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/0/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 1 (BMS)", "circuits": [], "snmp-index": 726}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/0/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 2", "circuits": [], "snmp-index": 727}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/0/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BRA GTS Server #3", "circuits": [], "snmp-index": 728}, {"router": "mx2.bra.sk.geant.net", "name": "lt-2/2/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 |", "circuits": [], "snmp-index": 813}, {"router": "mx2.bra.sk.geant.net", "name": "lt-2/2/0.12", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 | MDVPN CoC, GN PE to VPN-Proxy for BGP-LU", "circuits": [], "snmp-index": 791}, {"router": "mx2.bra.sk.geant.net", "name": "lt-2/2/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #MDVPN_VRR_Peering-brattislava| GN PE to VPN-Proxy for IBGP ", "circuits": [{"id": 710659, "name": "MDVPN_VRR_PEERING-BRATTISLAVA", "type": "MD-VPN (INTERNAL)", "status": "operational"}], "snmp-index": 792}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/2/0", "bundle": ["ae13"], "bundle-parents": [], "description": "PHY CUSTOMER SANET P_AE13 SRF9938825|OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 762}, {"router": "mx2.bra.sk.geant.net", "name": "xe-2/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | Link to gts.mx1 xe-0/0/0:3", "circuits": [], "snmp-index": 763}, {"router": "mx2.bra.sk.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-1/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | bra-bud", "circuits": [], "snmp-index": 594}, {"router": "mx2.bra.sk.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["xe-1/0/0", "xe-1/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-BUD-IPTRUNK | BRA-BUD |", "circuits": [{"id": 708741, "name": "BRA-BUD-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 604}, {"router": "mx2.bra.sk.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-0/1/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | bra-vie", "circuits": [], "snmp-index": 597}, {"router": "mx2.bra.sk.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-0/1/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-VIE-IPTRUNK | BRA-VIE |", "circuits": [{"id": 708719, "name": "BRA-VIE-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 615}, {"router": "mx2.bra.sk.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-2/0/0", "xe-2/0/1"], "description": "LAG INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | BRA SK VEEAM BACKUP", "circuits": [], "snmp-index": 623}, {"router": "mx2.bra.sk.geant.net", "name": "ae12.0", "bundle": [], "bundle-parents": ["xe-2/0/0", "xe-2/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VEEAMServer-Bra | VEEAM backup-1.bra.sk.geant.net", "circuits": [{"id": 708321, "name": "VEEAMSERVER-BRA", "type": "POP LAN LINK", "status": "operational"}], "snmp-index": 738}, {"router": "mx2.bra.sk.geant.net", "name": "ae13", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-2/2/0"], "description": "LAG CUSTOMER SANET SRF9938829 | ", "circuits": [], "snmp-index": 624}, {"router": "mx2.bra.sk.geant.net", "name": "ae13.420", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-2/2/0"], "description": "SRV_GLOBAL CUSTOMER SANET #SANET-AP1 | ASN2607 |", "circuits": [{"id": 661482, "name": "SANET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 769}, {"router": "mx2.bra.sk.geant.net", "name": "ae13.421", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-2/2/0"], "description": "SRV_IAS CUSTOMER SANET #SANET_AP_IAS IASGWS | ASN2607 | ", "circuits": [{"id": 661496, "name": "SANET_AP_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 768}, {"router": "mx2.bra.sk.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 843}, {"router": "mx2.bra.sk.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-bra-sk-mgmt-vrf-vlan999|", "circuits": [], "snmp-index": 614}, {"router": "mx2.bra.sk.geant.net", "name": "lt-2/2/0.21", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF9939451 | VPN-Proxy to GEANT PE for BGP-LU peering", "circuits": [], "snmp-index": 793}, {"router": "mx2.bra.sk.geant.net", "name": "lt-2/2/0.31", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF??? | VPN-Proxy to GEANT PE for IBGP", "circuits": [], "snmp-index": 794}, {"router": "mx2.bra.sk.geant.net", "name": "ae13.422", "bundle": [], "bundle-parents": ["xe-0/0/1", "xe-2/2/0"], "description": "SRV_MDVPN CUSTOMER SANET #SANET-GN-PRACE-VPN-Proxy-Bratislava-L3VPN | VPN-Proxy to NREN CE", "circuits": [{"id": 709648, "name": "SANET-GN-PRACE-VPN-PROXY-BRATISLAVA-L3VPN", "type": "MD-VPN (PROXY)", "status": "operational"}], "snmp-index": 805}, {"router": "mx1.vie.at.geant.net", "name": "xe-0/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9951063 | vie-zag ip3", "circuits": [], "snmp-index": 588}, {"router": "mx1.vie.at.geant.net", "name": "xe-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 589}, {"router": "mx1.vie.at.geant.net", "name": "xe-0/1/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9919883 | vie-zag ip1", "circuits": [], "snmp-index": 590}, {"router": "mx1.vie.at.geant.net", "name": "xe-0/1/1", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY PRIVATE FACEBOOK P_AE16 SRF9933137 | FB ID: FC-26606", "circuits": [], "snmp-index": 591}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 633}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 634}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 635}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915901 | VIE01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 636}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 637}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 638}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 639}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 640}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 641}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 642}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915903 | VIE01-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 643}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 644}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | vie at POP LAN", "circuits": [], "snmp-index": 645}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/2.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-vie-at-DRAC | Hades DRAC", "circuits": [{"id": 661748, "name": "HADES-VIE-AT-DRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 782}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/2.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP_VIE_AT | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150810", "circuits": [{"id": 661652, "name": "OWAMP_VIE_AT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 783}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/2.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-vie-at-idrac |perfSONAR iDRAC", "circuits": [{"id": 661719, "name": "PS-VIE-AT-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 740}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/2.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-vie-at-management |perfSONAR MGMT", "circuits": [{"id": 661769, "name": "PS-VIE-AT-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 778}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/2.60", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-vie-at | KVMoIP", "circuits": [{"id": 661623, "name": "KVMOIP-VIE-AT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 785}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/2.301", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #VIE_Groove_1 | VIE Groove 1  ", "circuits": [{"id": 661983, "name": "VIE_GROOVE_1", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1188}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/2.302", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #VIE_Groove_1_Management | VIE Groove 1 Direct Management", "circuits": [{"id": 661557, "name": "VIE_GROOVE_1_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1189}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/2.401", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #VIE_Groove_2 | VIE Groove 2  ", "circuits": [{"id": 661990, "name": "VIE_GROOVE_2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1190}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/2.402", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #VIE_Groove_2_Management | VIE Groove 2 Direct Management", "circuits": [{"id": 661430, "name": "VIE_GROOVE_2_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1191}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/2.991", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access #VIE_Groove | VIE Groove G30", "circuits": [{"id": 707244, "name": "VIE_GROOVE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 659}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 646}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 647}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 648}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 649}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 650}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 651}, {"router": "mx1.vie.at.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP", "circuits": [], "snmp-index": 652}, {"router": "mx1.vie.at.geant.net", "name": "et-3/0/0", "bundle": ["ae15"], "bundle-parents": [], "description": "PHY CUSTOMER ACONET P_ae15 SRF20026 | ACONET ID: Linz-Wien EP 36 (0203/1702673)", "circuits": [], "snmp-index": 628}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/0/0", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY PRIVATE FACEBOOK SRF9933139 P_ae14 | FB ID: FC-26605", "circuits": [], "snmp-index": 1038}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/0/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF99??? | PSMP BWCTL", "circuits": [{"id": 708284, "name": "PS-VIE-AT-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1039}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/0/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-vie-at-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160524", "circuits": [{"id": 708284, "name": "PS-VIE-AT-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1071}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/0/2", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9919903 | vie-zag ip2", "circuits": [], "snmp-index": 1040}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/0/3", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9951065 | vie-zag ip4", "circuits": [], "snmp-index": 1041}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/0/4", "bundle": ["ae25"], "bundle-parents": [], "description": "PHY PRIVATE AWS P_ae25 SRF9938937 | AS16509", "circuits": [], "snmp-index": 1042}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/0/5", "bundle": ["ae24"], "bundle-parents": [], "description": "PHY UPSTREAM TELIA | Telia ID: IC-326861", "circuits": [], "snmp-index": 1043}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/0/6", "bundle": ["ae20"], "bundle-parents": [], "description": "PHY CUSTOMER URAN SRF9939339|", "circuits": [], "snmp-index": 1044}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1045}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/1/0", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | bra-vie ip1", "circuits": [], "snmp-index": 1046}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/1/1", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | bra-vie ip2", "circuits": [], "snmp-index": 1047}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/1/2", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER CARNET P_ae12 SRF9951181 | CARNet AP1 #3, Te0/1/0/0", "circuits": [{"id": 669332, "name": "CARNET AP1-3", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 1048}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/1/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | Previously PSMP NETMON, not in use", "circuits": [], "snmp-index": 1049}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/1/4", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF9938999 | ath2-vie OTEGlobe:1-94LW1M7", "circuits": [], "snmp-index": 1050}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/1/5", "bundle": ["ae29"], "bundle-parents": [], "description": "PHY UPSTREAM COGENT | Cogent ID: 1-300398281", "circuits": [], "snmp-index": 1051}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/1/6", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY CUSTOMER KIFU AP2 #1 P_AE18 SRF19047 |", "circuits": [], "snmp-index": 1052}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/1/7", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY CUSTOMER KIFU AP2 #2 P_AE18 SRF19047 |", "circuits": [], "snmp-index": 1053}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1054}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/2/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY PUBLIC VIX P_ae10 SRF9911147 | VIX ID: switch-iec eth1/9", "circuits": [], "snmp-index": 1055}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/2/2", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY PUBLIC VIX P_ae10 SRF9922813 | VIX ID: switch-iec eth2/9", "circuits": [], "snmp-index": 1056}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/2/3", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY PUBLIC VIX P_ae10 SRF9929743 | VIX ID: switch-iec eth20/11", "circuits": [], "snmp-index": 1057}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Patched to MMR AT.VIE.VIE1.F00.201.R03.B09.HE13.X03/04", "circuits": [], "snmp-index": 1058}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/2/5", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER CARNET P_ae12 SRF9927559 | CARNet AP1 #2, part of ae12", "circuits": [], "snmp-index": 1059}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/2/6", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER CARNET P_ae12 SRF9951183 | CARNet AP1 #4, Te0/1/0/1", "circuits": [], "snmp-index": 1060}, {"router": "mx1.vie.at.geant.net", "name": "lt-4/3/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN |", "circuits": [], "snmp-index": 1119}, {"router": "mx1.vie.at.geant.net", "name": "lt-4/3/0.12", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN | MDVPN CoC, GN PE to VPN-Proxy for BGP-LU", "circuits": [], "snmp-index": 1122}, {"router": "mx1.vie.at.geant.net", "name": "lt-4/3/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE Access MDVPN GN #GEANT_IBGP_Peering-vienna| PE to VPN-Proxy for IBGP ", "circuits": [{"id": 710702, "name": "GEANT_IBGP_PEERING-VIENNA", "type": "MD-VPN (INTERNAL)", "status": "operational"}], "snmp-index": 1123}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/3/0", "bundle": ["ae20"], "bundle-parents": [], "description": "PHY CUSTOMER URAN SRF20-056", "circuits": [], "snmp-index": 1065}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/3/1", "bundle": ["ae19"], "bundle-parents": [], "description": "PHY PRIVATE Verizon P_AE19 SRF9951301 |", "circuits": [], "snmp-index": 1062}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/3/2", "bundle": ["ae19"], "bundle-parents": [], "description": "PHY PRIVATE Verizon P_AE19 SRF9951303 |", "circuits": [], "snmp-index": 1063}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/3/3", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER CARNET P_ae12 SRF9926991 | CARNet AP1 #1, part of ae12", "circuits": [], "snmp-index": 1064}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/3/4", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY CUSTOMER KIFU AP2 #4 P_AE18 SRF19047 |", "circuits": [], "snmp-index": 1066}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/3/5", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY PUBLIC VIX P_ae10 SRF9948718 | VIX ID:AT125267", "circuits": [], "snmp-index": 1067}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/3/6", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY PRIVATE FACEBOOK P_AE16 SRF9950491 | FB ID: AT134908-1", "circuits": [], "snmp-index": 1068}, {"router": "mx1.vie.at.geant.net", "name": "xe-4/3/7", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY PRIVATE FACEBOOK P_AE14 SRF9950493 | FB ID: AT134908-2", "circuits": [], "snmp-index": 1069}, {"router": "mx1.vie.at.geant.net", "name": "xe-7/0/0", "bundle": ["ae27"], "bundle-parents": [], "description": "PHY PRIVATE AKAMAI P_AE27 SRF9929869 | AKAMAI ID: DP28378", "circuits": [], "snmp-index": 824}, {"router": "mx1.vie.at.geant.net", "name": "xe-7/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 827}, {"router": "mx1.vie.at.geant.net", "name": "xe-7/1/1", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY CUSTOMER MARNET P_AE17 SRF9917499 |Neotel ID: CIETH1N00048|", "circuits": [], "snmp-index": 826}, {"router": "mx1.vie.at.geant.net", "name": "xe-8/0/0", "bundle": ["ae27"], "bundle-parents": [], "description": "PHY PRIVATE AKAMAI SRF9941955 P_ae27 | AKAMAI ID: DP29694", "circuits": [], "snmp-index": 987}, {"router": "mx1.vie.at.geant.net", "name": "xe-8/0/1", "bundle": ["ae29"], "bundle-parents": [], "description": "PHY UPSTREAM COGENT SRF9943643 | Cogent ID: 1-300398279", "circuits": [], "snmp-index": 988}, {"router": "mx1.vie.at.geant.net", "name": "xe-8/0/2", "bundle": ["ae24"], "bundle-parents": [], "description": "PHY UPSTREAM TELIA SRF9943645| Telia ID: IC-338562 ", "circuits": [], "snmp-index": 989}, {"router": "mx1.vie.at.geant.net", "name": "xe-8/0/3", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF9943657 | ath2-vie OTEGlobe: 1-6RK0GB4", "circuits": [], "snmp-index": 990}, {"router": "mx1.vie.at.geant.net", "name": "et-8/1/0", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 SRF9950763 |", "circuits": [], "snmp-index": 991}, {"router": "mx1.vie.at.geant.net", "name": "xe-8/2/0", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE SRF0000001 P_ae7 | sof-vie 441154365", "circuits": [], "snmp-index": 992}, {"router": "mx1.vie.at.geant.net", "name": "xe-8/2/1", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE SRF0000001 P_ae7 | sof-vie 441055868", "circuits": [], "snmp-index": 993}, {"router": "mx1.vie.at.geant.net", "name": "xe-8/2/2", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE SRF0000001 P_ae7 | sof-vie 441055869", "circuits": [], "snmp-index": 994}, {"router": "mx1.vie.at.geant.net", "name": "xe-8/2/3", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE SRF0000001 P_ae7 | sof-vie 441055870", "circuits": [], "snmp-index": 995}, {"router": "mx1.vie.at.geant.net", "name": "et-8/3/0", "bundle": ["ae9"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 SRF9941317|", "circuits": [], "snmp-index": 996}, {"router": "mx1.vie.at.geant.net", "name": "et-9/0/2", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 564}, {"router": "mx1.vie.at.geant.net", "name": "et-9/0/5", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 565}, {"router": "mx1.vie.at.geant.net", "name": "et-9/1/2", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 570}, {"router": "mx1.vie.at.geant.net", "name": "et-9/1/5", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER ARNES P_ae11 SRF9950483 | ", "circuits": [], "snmp-index": 571}, {"router": "mx1.vie.at.geant.net", "name": "et-10/0/2", "bundle": ["ae23"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae23 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 566}, {"router": "mx1.vie.at.geant.net", "name": "et-10/0/5", "bundle": ["ae23"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae23 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 567}, {"router": "mx1.vie.at.geant.net", "name": "et-10/1/2", "bundle": ["ae23"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae23 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 568}, {"router": "mx1.vie.at.geant.net", "name": "et-10/1/5", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE | BACKBONE P_AE3 SRF0000001 | RETN ID: WL-904687-1.AT.VIE.IRX-PL.POZ.BND-100G", "circuits": [], "snmp-index": 569}, {"router": "mx1.vie.at.geant.net", "name": "xe-11/0/0", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | bra-vie ip3", "circuits": [], "snmp-index": 860}, {"router": "mx1.vie.at.geant.net", "name": "xe-11/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 861}, {"router": "mx1.vie.at.geant.net", "name": "xe-11/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 862}, {"router": "mx1.vie.at.geant.net", "name": "xe-11/0/3", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY CUSTOMER KIFU AP2 #3 P_AE18 SRF19047 |", "circuits": [], "snmp-index": 863}, {"router": "mx1.vie.at.geant.net", "name": "et-11/1/0", "bundle": ["ae21"], "bundle-parents": [], "description": "PHY CUSTOMER ROEDUNET P_AE21 SRF20069 |", "circuits": [], "snmp-index": 864}, {"router": "mx1.vie.at.geant.net", "name": "lt-11/1/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 956}, {"router": "mx1.vie.at.geant.net", "name": "lt-11/1/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-vie-at-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710682, "name": "BGPPEERING-VIE-AT-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 959}, {"router": "mx1.vie.at.geant.net", "name": "lt-11/1/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #VIE-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 960}, {"router": "mx1.vie.at.geant.net", "name": "xe-11/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 865}, {"router": "mx1.vie.at.geant.net", "name": "xe-11/2/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF9939001 | ath2-vie OTEGlobe: 1-4XPLWF2", "circuits": [], "snmp-index": 866}, {"router": "mx1.vie.at.geant.net", "name": "xe-11/2/2", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF9938999 | ath2-vie OTEGlobe: 1-4XPLWDZ", "circuits": [], "snmp-index": 867}, {"router": "mx1.vie.at.geant.net", "name": "xe-11/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 868}, {"router": "mx1.vie.at.geant.net", "name": "et-11/3/0", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED | CESNET CBF AP2 Upgrade", "circuits": [], "snmp-index": 869}, {"router": "mx1.vie.at.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-4/1/4", "xe-8/0/3", "xe-11/2/1", "xe-11/2/2"], "description": "LAG INFRASTRUCTURE BACKBONE | ath2-vie", "circuits": [], "snmp-index": 653}, {"router": "mx1.vie.at.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["xe-4/1/4", "xe-8/0/3", "xe-11/2/1", "xe-11/2/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-VIE-IPTRUNK | ATH2-VIE |", "circuits": [{"id": 708735, "name": "ATH2-VIE-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 685}, {"router": "mx1.vie.at.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-4/0/2", "xe-4/0/3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF9925405| vie-zag", "circuits": [], "snmp-index": 654}, {"router": "mx1.vie.at.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/1/0", "xe-4/0/2", "xe-4/0/3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #VIE_ZAG_IPTRUNK | VIE-ZAG |  ", "circuits": [{"id": 708748, "name": "VIE_ZAG_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 748}, {"router": "mx1.vie.at.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-10/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | poz-vie", "circuits": [], "snmp-index": 656}, {"router": "mx1.vie.at.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-10/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #POZ_VIE_IPTRUNK | POZ-VIE |  ", "circuits": [{"id": 708710, "name": "POZ_VIE_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 916}, {"router": "mx1.vie.at.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["xe-4/1/0", "xe-4/1/1", "xe-11/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | bra-vie", "circuits": [], "snmp-index": 657}, {"router": "mx1.vie.at.geant.net", "name": "ae4.0", "bundle": [], "bundle-parents": ["xe-4/1/0", "xe-4/1/1", "xe-11/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-VIE-IPTRUNK | BRA-VIE |", "circuits": [{"id": 708719, "name": "BRA-VIE-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 752}, {"router": "mx1.vie.at.geant.net", "name": "ae7", "bundle": [], "bundle-parents": ["xe-8/2/0", "xe-8/2/1", "xe-8/2/2", "xe-8/2/3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | sof-vie", "circuits": [], "snmp-index": 687}, {"router": "mx1.vie.at.geant.net", "name": "ae7.0", "bundle": [], "bundle-parents": ["xe-8/2/0", "xe-8/2/1", "xe-8/2/2", "xe-8/2/3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #SOF_VIE_IPTRUNK | SOF-VIE |  ", "circuits": [{"id": 708746, "name": "SOF_VIE_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 666}, {"router": "mx1.vie.at.geant.net", "name": "ae8", "bundle": [], "bundle-parents": ["et-9/0/2", "et-9/0/5", "et-9/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE VIE SRF0000001 | mil2-vie | Coriant G30 300G", "circuits": [], "snmp-index": 751}, {"router": "mx1.vie.at.geant.net", "name": "ae8.0", "bundle": [], "bundle-parents": ["et-9/0/2", "et-9/0/5", "et-9/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MIL2_VIE_IPTRUNK | MIL2-VIE |Coriant G30 300G", "circuits": [{"id": 708717, "name": "MIL2_VIE_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 753}, {"router": "mx1.vie.at.geant.net", "name": "ae9", "bundle": [], "bundle-parents": ["et-8/1/0", "et-8/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | bud-vie", "circuits": [], "snmp-index": 689}, {"router": "mx1.vie.at.geant.net", "name": "ae9.0", "bundle": [], "bundle-parents": ["et-8/1/0", "et-8/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-VIE-IPTRUNK | BUD-VIE |  ", "circuits": [{"id": 708737, "name": "BUD-VIE-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 811}, {"router": "mx1.vie.at.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-4/2/1", "xe-4/2/2", "xe-4/2/3", "xe-4/3/5"], "description": "LAG PUBLIC VIX SRF9923739", "circuits": [], "snmp-index": 690}, {"router": "mx1.vie.at.geant.net", "name": "ae10.0", "bundle": [], "bundle-parents": ["xe-4/2/1", "xe-4/2/2", "xe-4/2/3", "xe-4/3/5"], "description": "SRV_IAS PUBLIC VIX #IX_Peerings_in_VIX |", "circuits": [{"id": 708175, "name": "IX_PEERINGS_IN_VIX", "type": "IP PEERING - NON R&E (PUBLIC)", "status": "operational"}], "snmp-index": 661}, {"router": "mx1.vie.at.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["et-9/1/5"], "description": "LAG CUSTOMER ARNES SRF9923665 | ARNES AP2 LAG", "circuits": [], "snmp-index": 691}, {"router": "mx1.vie.at.geant.net", "name": "ae11.100", "bundle": [], "bundle-parents": ["et-9/1/5"], "description": "SRV_GLOBAL CUSTOMER ARNES #ARNES-AP2 | ASN2107 | ARNES AP2 ", "circuits": [{"id": 661445, "name": "ARNES-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 715}, {"router": "mx1.vie.at.geant.net", "name": "ae11.111", "bundle": [], "bundle-parents": ["et-9/1/5"], "description": "SRV_L3VPN CUSTOMER ARNES #ARNES_VIE_LHCONE | ASN2107", "circuits": [{"id": 673656, "name": "ARNES_VIE_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 814}, {"router": "mx1.vie.at.geant.net", "name": "ae11.333", "bundle": [], "bundle-parents": ["et-9/1/5"], "description": "SRV_IAS CUSTOMER ARNES #ARNES_AP2_IAS IASPS | ASN2107 ", "circuits": [{"id": 661634, "name": "ARNES_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 779}, {"router": "mx1.vie.at.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-4/1/2", "xe-4/2/5", "xe-4/2/6", "xe-4/3/3"], "description": "LAG CUSTOMER CARNET SRF9927637 | CARNet AP", "circuits": [], "snmp-index": 692}, {"router": "mx1.vie.at.geant.net", "name": "ae12.100", "bundle": [], "bundle-parents": ["xe-4/1/2", "xe-4/2/5", "xe-4/2/6", "xe-4/3/3"], "description": "SRV_GLOBAL CUSTOMER CARNET #CARNET-AP1 | ASN2108 | ", "circuits": [{"id": 661973, "name": "CARNET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 841}, {"router": "mx1.vie.at.geant.net", "name": "ae12.333", "bundle": [], "bundle-parents": ["xe-4/1/2", "xe-4/2/5", "xe-4/2/6", "xe-4/3/3"], "description": "SRV_IAS CUSTOMER CARNET #CARNET_AP1_IAS IASPS | ASN2108 ", "circuits": [{"id": 661733, "name": "CARNET_AP1_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 840}, {"router": "mx1.vie.at.geant.net", "name": "ae14", "bundle": [], "bundle-parents": ["xe-4/0/0", "xe-4/3/7"], "description": "LAG PRIVATE FACEBOOK SRF9933143", "circuits": [], "snmp-index": 694}, {"router": "mx1.vie.at.geant.net", "name": "ae14.0", "bundle": [], "bundle-parents": ["xe-4/0/0", "xe-4/3/7"], "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK_32934_VIE_FC-26605 | ASN32934", "circuits": [{"id": 708205, "name": "FACEBOOK_32934_VIE_FC-26605", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 853}, {"router": "mx1.vie.at.geant.net", "name": "ae15", "bundle": [], "bundle-parents": ["et-3/0/0"], "description": "LAG CUSTOMER ACONET SRF996718 | ACONET AP", "circuits": [], "snmp-index": 695}, {"router": "mx1.vie.at.geant.net", "name": "ae15.51", "bundle": [], "bundle-parents": ["et-3/0/0"], "description": "SRV_GLOBAL CUSTOMER ACONET #ACONET-AP1 | ASN1853 | ", "circuits": [{"id": 660433, "name": "ACONET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 831}, {"router": "mx1.vie.at.geant.net", "name": "ae15.52", "bundle": [], "bundle-parents": ["et-3/0/0"], "description": "SRV_IAS CUSTOMER ACONET #ACONET-AP1-IAS IASPS | ASN1853 ", "circuits": [{"id": 661622, "name": "ACONET-AP1-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 830}, {"router": "mx1.vie.at.geant.net", "name": "ae15.667", "bundle": [], "bundle-parents": ["et-3/0/0"], "description": "SRV_CLS CUSTOMER ACONET #ACONET-AP-CLS|ASN1853 | ", "circuits": [{"id": 661215, "name": "ACONET-AP-CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1024}, {"router": "mx1.vie.at.geant.net", "name": "ae16", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-4/3/6"], "description": "LAG PRIVATE FACEBOOK SRF9933351", "circuits": [], "snmp-index": 696}, {"router": "mx1.vie.at.geant.net", "name": "ae16.0", "bundle": [], "bundle-parents": ["xe-0/1/1", "xe-4/3/6"], "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK_32934_VIE_FC-26606 | ASN32934", "circuits": [{"id": 708224, "name": "FACEBOOK_32934_VIE_FC-26606", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 722}, {"router": "mx1.vie.at.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["xe-7/1/1"], "description": "LAG CUSTOMER MARNET AP2 SRF9917449|", "circuits": [], "snmp-index": 697}, {"router": "mx1.vie.at.geant.net", "name": "ae17.100", "bundle": [], "bundle-parents": ["xe-7/1/1"], "description": "SRV_GLOBAL CUSTOMER MARNET #MARNET-AP2 | ASN44224 | backup ", "circuits": [{"id": 660630, "name": "MARNET_AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 880}, {"router": "mx1.vie.at.geant.net", "name": "ae17.333", "bundle": [], "bundle-parents": ["xe-7/1/1"], "description": "SRV_IAS CUSTOMER MARNET #MARNET-AP2-IAS IASGWS | ASN44224 ", "circuits": [{"id": 661313, "name": "MARNET_AP2_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 622}, {"router": "mx1.vie.at.geant.net", "name": "ae18", "bundle": [], "bundle-parents": ["xe-4/1/6", "xe-4/1/7", "xe-4/3/4", "xe-11/0/3"], "description": "LAG CUSTOMER KIFU SRF19047 |", "circuits": [], "snmp-index": 578}, {"router": "mx1.vie.at.geant.net", "name": "ae18.100", "bundle": [], "bundle-parents": ["xe-4/1/6", "xe-4/1/7", "xe-4/3/4", "xe-11/0/3"], "description": "SRV_GLOBAL CUSTOMER KIFU #KIFU_AP2 | ASN1955 | ", "circuits": [{"id": 660432, "name": "KIFU_AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 585}, {"router": "mx1.vie.at.geant.net", "name": "ae18.333", "bundle": [], "bundle-parents": ["xe-4/1/6", "xe-4/1/7", "xe-4/3/4", "xe-11/0/3"], "description": "SRV_IAS CUSTOMER KIFU #KIFU_AP2_IAS IASGWS | ASN1955 | ", "circuits": [{"id": 661936, "name": "KIFU_AP2_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 586}, {"router": "mx1.vie.at.geant.net", "name": "ae19", "bundle": [], "bundle-parents": ["xe-4/3/1", "xe-4/3/2"], "description": "LAG PRIVATE Verizon Digital SRF9942909 |", "circuits": [], "snmp-index": 699}, {"router": "mx1.vie.at.geant.net", "name": "ae19.0", "bundle": [], "bundle-parents": ["xe-4/3/1", "xe-4/3/2"], "description": "SRV_IAS PRIVATE VERIZON #VERIZON_DIGITAL_15133_AT | ASN15133", "circuits": [{"id": 708295, "name": "VERIZON_DIGITAL_15133_AT", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 813}, {"router": "mx1.vie.at.geant.net", "name": "ae20", "bundle": [], "bundle-parents": ["xe-4/0/6", "xe-4/3/0"], "description": "LAG CUSTOMER URAN SRF20-056|", "circuits": [], "snmp-index": 700}, {"router": "mx1.vie.at.geant.net", "name": "ae20.100", "bundle": [], "bundle-parents": ["xe-4/0/6", "xe-4/3/0"], "description": "SRV_GLOBAL CUSTOMER URAN #URAN_AP_R&E | ASN12687 | ", "circuits": [{"id": 678596, "name": "URAN_AP_R&E", "type": "GEANT IP", "status": "operational"}], "snmp-index": 843}, {"router": "mx1.vie.at.geant.net", "name": "ae20.333", "bundle": [], "bundle-parents": ["xe-4/0/6", "xe-4/3/0"], "description": "SRV_IAS CUSTOMER URAN #URAN_AP_IAS IASGWS | ASN12687 | ", "circuits": [{"id": 678593, "name": "URAN_AP_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 844}, {"router": "mx1.vie.at.geant.net", "name": "ae20.360", "bundle": [], "bundle-parents": ["xe-4/0/6", "xe-4/3/0"], "description": "SRV_L3VPN CUSTOMER URAN #URAN_VIE_LHCONE | ASN12687", "circuits": [{"id": 678595, "name": "URAN_VIE_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 845}, {"router": "mx1.vie.at.geant.net", "name": "ae21", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "LAG CUSTOMER ROEDUNET AP2 SRF20069 |", "circuits": [], "snmp-index": 701}, {"router": "mx1.vie.at.geant.net", "name": "ae21.100", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_GLOBAL CUSTOMER ROEDUNET #ROEDUNET_AP2 | ASN2614 | ", "circuits": [{"id": 679571, "name": "ROEDUNET_AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 919}, {"router": "mx1.vie.at.geant.net", "name": "ae21.111", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_L3VPN CUSTOMER ROEDUNET #ROEDUNET_AP2_LHCONE | ASN2614", "circuits": [{"id": 679572, "name": "ROEDUNET_AP2_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 625}, {"router": "mx1.vie.at.geant.net", "name": "ae21.333", "bundle": [], "bundle-parents": ["et-11/1/0"], "description": "SRV_IAS CUSTOMER ROEDUNET #ROEDUNET_AP2_IAS IASGWS | ASN2614 | ", "circuits": [{"id": 679570, "name": "ROEDUNET_AP2_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 918}, {"router": "mx1.vie.at.geant.net", "name": "ae23", "bundle": [], "bundle-parents": ["et-10/0/2", "et-10/0/5", "et-10/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE VIE SRF0000001 | pra-vie | Coriant G30 300G", "circuits": [], "snmp-index": 758}, {"router": "mx1.vie.at.geant.net", "name": "ae23.0", "bundle": [], "bundle-parents": ["et-10/0/2", "et-10/0/5", "et-10/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #PRA_VIE_IPTRUNK | VIE-PRA |Coriant G30 300G", "circuits": [{"id": 708749, "name": "PRA_VIE_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 759}, {"router": "mx1.vie.at.geant.net", "name": "ae24", "bundle": [], "bundle-parents": ["xe-4/0/5", "xe-8/0/2"], "description": "LAG UPSTREAM TELIA |", "circuits": [], "snmp-index": 704}, {"router": "mx1.vie.at.geant.net", "name": "ae24.0", "bundle": [], "bundle-parents": ["xe-4/0/5", "xe-8/0/2"], "description": "SRV_IAS UPSTREAM TELIA #TELIA_GWS_VIE | ASN1299", "circuits": [{"id": 708206, "name": "TELIA_GWS_VIE", "type": "GWS - UPSTREAM", "status": "operational"}], "snmp-index": 967}, {"router": "mx1.vie.at.geant.net", "name": "ae25", "bundle": [], "bundle-parents": ["xe-4/0/4"], "description": "LAG PRIVATE AWS SRF9940295 |", "circuits": [], "snmp-index": 705}, {"router": "mx1.vie.at.geant.net", "name": "ae25.0", "bundle": [], "bundle-parents": ["xe-4/0/4"], "description": "SRV_CLS PRIVATE AWS #AT-AWS_CLS|ASN16509 | ", "circuits": [{"id": 708166, "name": "AT-AWS_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 942}, {"router": "mx1.vie.at.geant.net", "name": "ae27", "bundle": [], "bundle-parents": ["xe-7/0/0", "xe-8/0/0"], "description": "LAG PRIVATE AKAMAI SRF9941087", "circuits": [], "snmp-index": 707}, {"router": "mx1.vie.at.geant.net", "name": "ae27.0", "bundle": [], "bundle-parents": ["xe-7/0/0", "xe-8/0/0"], "description": "SRV_IAS PRIVATE AKAMAI #AKAMAI_20940_AT | ASN20940", "circuits": [{"id": 708328, "name": "AKAMAI_20940_AT", "type": "IP PEERING - NON R&E (PRIVATE)", "status": "operational"}], "snmp-index": 975}, {"router": "mx1.vie.at.geant.net", "name": "ae29", "bundle": [], "bundle-parents": ["xe-4/1/5", "xe-8/0/1"], "description": "LAG UPSTREAM COGENT SRF9945471 | Cogent ID: 1-300398279", "circuits": [], "snmp-index": 709}, {"router": "mx1.vie.at.geant.net", "name": "ae29.0", "bundle": [], "bundle-parents": ["xe-4/1/5", "xe-8/0/1"], "description": "SRV_IAS UPSTREAM COGENT #COGENT_GWS_VIE | ASN174", "circuits": [{"id": 708322, "name": "COGENT_GWS_VIE", "type": "GWS - UPSTREAM", "status": "operational"}], "snmp-index": 1140}, {"router": "mx1.vie.at.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-vie-at-mgmt-vrf-vlan999|", "circuits": [], "snmp-index": 683}, {"router": "mx1.vie.at.geant.net", "name": "lt-4/3/0.21", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF99??? | VPN-Proxy to GEANT PE for BGP-LU peering", "circuits": [], "snmp-index": 1124}, {"router": "mx1.vie.at.geant.net", "name": "lt-4/3/0.31", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF??? | VPN-Proxy to GEANT PE for IBGP", "circuits": [], "snmp-index": 1125}, {"router": "mx1.vie.at.geant.net", "name": "ae11.360", "bundle": [], "bundle-parents": ["et-9/1/5"], "description": "SRV_MDVPN CUSTOMER ARNES #ARNES-GN-PRACE-VPN-Proxy-Vienna-L3VPN | VPN-Proxy to NREN CE", "circuits": [{"id": 709657, "name": "ARNES-GN-PRACE-VPN-PROXY-VIENNA-L3VPN", "type": "MD-VPN (PROXY)", "status": "operational"}], "snmp-index": 815}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 513}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/1", "bundle": [], "bundle-parents": [], "description": "To SRX1", "circuits": [], "snmp-index": 514}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/1.10", "bundle": [], "bundle-parents": [], "description": "Inter-SRX Link for Routing", "circuits": [{"id": 662939, "name": "CONNECTIVITY FOR INTER-SRX LINK ROUTING", "type": "GEANT IP", "status": "operational"}], "snmp-index": 509}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 515}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/3", "bundle": [], "bundle-parents": [], "description": "SRX-2 To Switch Cluster ge-2/0/0", "circuits": [], "snmp-index": 517}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/3.500", "bundle": [], "bundle-parents": [], "description": "City House Network Infrastructure", "circuits": [{"id": 662925, "name": "CITY HOUSE NETWORK INFRASTRUCTURE", "type": "GEANT IP", "status": "operational"}], "snmp-index": 548}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/3.996", "bundle": [], "bundle-parents": [], "description": "City House Lab for Infinera MGMT Network", "circuits": [], "snmp-index": 553}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 518}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 519}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 520}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 521}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/8", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER GEANT CORPORATE SRF000001 | GEANT Corporate to MX1.LON - Via Vodafone", "circuits": [{"id": 679232, "name": "GEANT CORPORATE TO MX1.LON - VIA VODAFONE", "type": "GEANT IP", "status": "operational"}], "snmp-index": 523}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/8.10", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER GEANT #GEANT_CORPORATE-ViaVodafone | GEANT Corporate to mx1.lon - Via Vodafone ", "circuits": [{"id": 679360, "name": "GEANT_CORPORATE-VIAVODAFONE", "type": "GEANT IP", "status": "operational"}], "snmp-index": 543}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/8.11", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER GEANT #GEANT_CORPORATE_ViaVodafone-VRF | GEANT Corporate to mx1.lon - Via Vodafone - for VRF", "circuits": [], "snmp-index": 545}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/8.12", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER GEANT #GEANT_CORPORATE_ViaVodafone-VRF-TEST | GEANT Corporate to mx1.lon - Via Vodafone - DASHBOARD BGP TEST VLAN", "circuits": [{"id": 678920, "name": "TEST-BGP LINK-LON1 (DO NOT OPEN A TICKET)", "type": "GEANT IP", "status": "operational"}], "snmp-index": 522}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/8.996", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER GEANT #GEANT_OPERATIONS_LabConnectivity | GEANT MX1.LON Infinera VRF to Operations Lab", "circuits": [{"id": 678999, "name": "GEANT_OPERATIONS_LABCONNECTIVITY", "type": "GEANT IP", "status": "operational"}], "snmp-index": 554}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 524}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/10", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 525}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/11", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 527}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/12", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 528}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/13", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 529}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/14", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 530}, {"router": "srx2.ch.office.geant.net", "name": "ge-0/0/15", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 532}, {"router": "srx2.ch.office.geant.net", "name": "fxp0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE MANAGEMENT | CH SRX-2 Router", "circuits": [], "snmp-index": 1}, {"router": "srx2.ch.office.geant.net", "name": "lo0.0", "bundle": [], "bundle-parents": [], "description": "Router Loopback", "circuits": [], "snmp-index": 16}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/0/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF9929573 | HAM-TAL #1 NORDUNET ID: NU-S000358, GLOBALCONNECT ID: F31476-1061143", "circuits": [], "snmp-index": 556}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/0/1", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF9929575 | HAM-TAL #2 NORDUNET ID: NU-S000359, GLOBALCONNECT ID: F31476-1061144", "circuits": [], "snmp-index": 557}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | AMS GTS Server #4", "circuits": [], "snmp-index": 1476}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 5(BMS)", "circuits": [], "snmp-index": 1477}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/0/3.20", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS GTS #ams_ham-SCION-GTS_20054 |", "circuits": [{"id": 705430, "name": "AMS_HAM-SCION-GTS_20054", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 897}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/0/3.26", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS DFN #ham-ham_SCION_GTS-DFN_20020 |", "circuits": [{"id": 678500, "name": "HAM-HAM_SCION_GTS-DFN_20020", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 915}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/0/3.30", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS GTS #ham_par-SCION-GTS_20055 |", "circuits": [{"id": 705477, "name": "HAM_PAR-SCION-GTS_20055", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 898}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/0/3.40", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS NETHERLIGHT #ams-ham_SCION_GTS-Netherlight_20019 |", "circuits": [{"id": 705902, "name": "AMS-HAM_SCION_GTS-NETHERLIGHT_20019", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 914}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/0/3.44", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS SWITCH #gen-ham_SCION_SWITCH-GTS_19024 |", "circuits": [{"id": 706485, "name": "GEN-HAM_SCION_SWITCH-GTS_19024", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 913}, {"router": "mx1.ham.de.geant.net", "name": "et-0/1/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF9929761 | LEVEL3 ID: BCXT9912", "circuits": [], "snmp-index": 1478}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/2/0", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER DFN GTS | DFN 10G Link for GTS use", "circuits": [], "snmp-index": 548}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/2/0.26", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS DFN #ham-ham_SCION_GTS-DFN_20020 |", "circuits": [{"id": 678500, "name": "HAM-HAM_SCION_GTS-DFN_20020", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 855}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/2/0.33", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS DFN #ham-par_SCION_GTS-DFN_20021 |", "circuits": [{"id": 705469, "name": "HAM-PAR_SCION_GTS-DFN_20021", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 856}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/2/1", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER NORDUNET P_AE11 SRF9918565 |", "circuits": [], "snmp-index": 549}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/2/2", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER NORDUNET P_AE11 SRF9918563 |", "circuits": [], "snmp-index": 1479}, {"router": "mx1.ham.de.geant.net", "name": "xe-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER NORDUNET BOD SRF9915243 |", "circuits": [], "snmp-index": 1480}, {"router": "mx1.ham.de.geant.net", "name": "et-0/3/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | LEVEL3 ID: 441196414", "circuits": [], "snmp-index": 1481}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 546}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 6 (BMS)", "circuits": [], "snmp-index": 547}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/1.0", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-3140e01b69", "circuits": [{"id": 709619, "name": "HA-3140E01B69", "type": "GTS", "status": "operational"}], "snmp-index": 745}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 7 (BMS)", "circuits": [{"id": 705453, "name": "FRA_HAM-GTS-RARE_200104_FRA", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1489}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/2.101", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER GTS GEANT #fra_ham-GTS-RARE_200104_ham |", "circuits": [{"id": 705453, "name": "FRA_HAM-GTS-RARE_200104_FRA", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 988}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | link to GTS SERVER 8", "circuits": [], "snmp-index": 1490}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/3.11", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-dd3bb853c8", "circuits": [{"id": 706957, "name": "HA-DD3BB853C8", "type": "GTS", "status": "operational"}], "snmp-index": 623}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/3.12", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-3d08fa5333", "circuits": [], "snmp-index": 684}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/3.13", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-cb4088d78d", "circuits": [], "snmp-index": 687}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/3.14", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-d08cd51e3b", "circuits": [{"id": 706608, "name": "HA-D08CD51E3B", "type": "GTS", "status": "operational"}], "snmp-index": 700}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/3.15", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-4e9458d1a1", "circuits": [{"id": 706982, "name": "HA-4E9458D1A1", "type": "GTS", "status": "operational"}], "snmp-index": 698}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/3.16", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #ham_pra-WP6-GTS_21010 |", "circuits": [{"id": 706454, "name": "HAM_PRA-WP6-GTS_21010", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 720}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/0/3.17", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-77dcb24d4f", "circuits": [], "snmp-index": 689}, {"router": "mx1.ham.de.geant.net", "name": "et-1/1/0", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER PSNC P_AE12 SRF9937197 |", "circuits": [], "snmp-index": 1491}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | link to GTS SERVER 9", "circuits": [], "snmp-index": 837}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0.11", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-cb4088d78d", "circuits": [], "snmp-index": 688}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0.12", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-483a058d58", "circuits": [{"id": 706924, "name": "HA-483A058D58", "type": "GTS", "status": "operational"}], "snmp-index": 681}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0.13", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-3d08fa5333", "circuits": [], "snmp-index": 685}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0.14", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-77dcb24d4f", "circuits": [], "snmp-index": 690}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0.15", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-c5e134b19a", "circuits": [{"id": 707069, "name": "HA-C5E134B19A", "type": "GTS", "status": "operational"}], "snmp-index": 691}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0.16", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-31a7fbea91", "circuits": [{"id": 707033, "name": "HA-31A7FBEA91", "type": "GTS", "status": "operational"}], "snmp-index": 693}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0.17", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #ham_ham-WP6-GTS_21009 |", "circuits": [{"id": 705621, "name": "HAM_HAM-WP6-GTS_21009", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 703}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0.18", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-f3ce2b171f", "circuits": [{"id": 707235, "name": "HA-F3CE2B171F", "type": "GTS", "status": "operational"}], "snmp-index": 722}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0.20", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-41c6b9e757", "circuits": [{"id": 711468, "name": "HA-41C6B9E757", "type": "GTS", "status": "operational"}], "snmp-index": 726}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0.21", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-5a841e7dc1", "circuits": [{"id": 711467, "name": "AM-1C6D346FB4", "type": "GTS", "status": "operational"}], "snmp-index": 727}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/0.22", "bundle": [], "bundle-parents": [], "description": "GTS_link|HA-e45837fbd0", "circuits": [{"id": 711463, "name": "AM-7599A956D3", "type": "GTS", "status": "operational"}], "snmp-index": 732}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/1", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | HAM-TAL #3 NORDUNET ID: NU-S000644, GLOBALCONNECT ID: F31476-xxxxxxx", "circuits": [], "snmp-index": 838}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | HAM-TAL #4 NORDUNET ID: NU-S000643, GLOBALCONNECT ID: F31476-1089157", "circuits": [], "snmp-index": 1492}, {"router": "mx1.ham.de.geant.net", "name": "xe-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1493}, {"router": "mx1.ham.de.geant.net", "name": "et-1/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1494}, {"router": "mx1.ham.de.geant.net", "name": "xe-2/0/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | Link to gts.mx1 xe-0/0/0:3", "circuits": [], "snmp-index": 640}, {"router": "mx1.ham.de.geant.net", "name": "xe-2/0/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | Link to gts.mx2 xe-0/0/0:3", "circuits": [], "snmp-index": 641}, {"router": "mx1.ham.de.geant.net", "name": "xe-2/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL |", "circuits": [], "snmp-index": 642}, {"router": "mx1.ham.de.geant.net", "name": "xe-2/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL |", "circuits": [], "snmp-index": 643}, {"router": "mx1.ham.de.geant.net", "name": "et-2/1/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9943113 |", "circuits": [], "snmp-index": 644}, {"router": "mx1.ham.de.geant.net", "name": "lt-2/1/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 794}, {"router": "mx1.ham.de.geant.net", "name": "lt-2/1/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-ham-de-RE_IAS| BGP PEERING - RE SIDE", "circuits": [{"id": 710662, "name": "BGPPEERING-HAM-DE-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 797}, {"router": "mx1.ham.de.geant.net", "name": "lt-2/1/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #HAM-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 798}, {"router": "mx1.ham.de.geant.net", "name": "xe-2/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 0 (BMS)", "circuits": [], "snmp-index": 645}, {"router": "mx1.ham.de.geant.net", "name": "xe-2/2/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #ham_lon2-WP6-GTS_20063 |", "circuits": [{"id": 678788, "name": "HAM_LON2-WP6-GTS_20063", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 721}, {"router": "mx1.ham.de.geant.net", "name": "xe-2/2/0.17", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #ham_ham-WP6-GTS_21009 |", "circuits": [{"id": 705621, "name": "HAM_HAM-WP6-GTS_21009", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 704}, {"router": "mx1.ham.de.geant.net", "name": "xe-2/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 1", "circuits": [], "snmp-index": 646}, {"router": "mx1.ham.de.geant.net", "name": "xe-2/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 2", "circuits": [], "snmp-index": 647}, {"router": "mx1.ham.de.geant.net", "name": "xe-2/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 3", "circuits": [], "snmp-index": 648}, {"router": "mx1.ham.de.geant.net", "name": "et-2/3/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9930285 | SURFNET ID: ASD001A-HB001A_GEANT-50G-001 to -010/HB001A-ASD001A_GEANT-50G-001 to -010", "circuits": [], "snmp-index": 649}, {"router": "mx1.ham.de.geant.net", "name": "et-3/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 656}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF9930441 | HAM DE POP LAN", "circuits": [{"id": 662967, "name": "TAAS_CONTROL_HAMBURG", "type": "GTS", "status": "operational"}], "snmp-index": 661}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/0.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-ham-de-idrac |perfSONAR IDRAC", "circuits": [{"id": 663199, "name": "PS-HAM-DE-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 695}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/0.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-ham-de-management |perfSONAR MGMT", "circuits": [{"id": 663181, "name": "PS-HAM-DE-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 696}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/0.250", "bundle": [], "bundle-parents": [], "description": "SRV_TAAS INFRASTRUCTURE ACCESS #TAAS_CONTROL_HAMBURG | TAAS CONTROL", "circuits": [{"id": 662967, "name": "TAAS_CONTROL_HAMBURG", "type": "GTS", "status": "operational"}], "snmp-index": 678}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 662}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 663}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/3", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED|Reserved for GCS Testing", "circuits": [], "snmp-index": 657}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 658}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access | To GTS EX P22", "circuits": [], "snmp-index": 659}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 660}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 664}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access | To GTS EX P23", "circuits": [], "snmp-index": 665}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 666}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 672}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/3/1", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #TEST-GOC-LINK | For alarm testing", "circuits": [{"id": 702120, "name": "TEST-GOC-LINK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 673}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | TAAS CONTROL - GTS.SW2 P22", "circuits": [], "snmp-index": 674}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/3/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_TAAS INFRASTRUCTURE GTS #TAAS_CONTROL_HAMBURG_vlan0 | TAAS CONTROL", "circuits": [], "snmp-index": 848}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/3/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS | GTS.SW2 P23 - VPLS", "circuits": [], "snmp-index": 667}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/3/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS | GTS.SW2 P24 - BMS", "circuits": [], "snmp-index": 668}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | SPARE", "circuits": [], "snmp-index": 669}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 670}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | HAM DTNX DCN A", "circuits": [], "snmp-index": 671}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/3/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE INFINERA SRF9938121 | HAM01-DTNX10-1-1  XCM 1", "circuits": [], "snmp-index": 675}, {"router": "mx1.ham.de.geant.net", "name": "ge-3/3/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE INFINERA SRF9938123 | HAM01-DTNX10-1-1  XCM 2", "circuits": [], "snmp-index": 676}, {"router": "mx1.ham.de.geant.net", "name": "et-4/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 712}, {"router": "mx1.ham.de.geant.net", "name": "xe-5/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 780}, {"router": "mx1.ham.de.geant.net", "name": "xe-5/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL |", "circuits": [], "snmp-index": 783}, {"router": "mx1.ham.de.geant.net", "name": "xe-5/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL |", "circuits": [], "snmp-index": 784}, {"router": "mx1.ham.de.geant.net", "name": "xe-5/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL |", "circuits": [], "snmp-index": 785}, {"router": "mx1.ham.de.geant.net", "name": "et-5/1/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER DFN P_AE10 SRF9943111 |", "circuits": [], "snmp-index": 786}, {"router": "mx1.ham.de.geant.net", "name": "xe-5/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL |", "circuits": [], "snmp-index": 803}, {"router": "mx1.ham.de.geant.net", "name": "xe-5/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL |", "circuits": [], "snmp-index": 787}, {"router": "mx1.ham.de.geant.net", "name": "xe-5/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL |", "circuits": [], "snmp-index": 801}, {"router": "mx1.ham.de.geant.net", "name": "xe-5/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL |", "circuits": [], "snmp-index": 802}, {"router": "mx1.ham.de.geant.net", "name": "et-5/3/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER DFN P_AE10 SRF9929765 |", "circuits": [], "snmp-index": 804}, {"router": "mx1.ham.de.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["et-0/1/0", "et-0/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE FRA SRF9930571 | fra-ham", "circuits": [], "snmp-index": 564}, {"router": "mx1.ham.de.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["et-0/1/0", "et-0/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-HAM-IPTRUNK | FRA-HAM |  ", "circuits": [{"id": 708714, "name": "FRA-HAM-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 573}, {"router": "mx1.ham.de.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-2/1/0", "et-2/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE AMS SRF9930565 | ams-ham", "circuits": [], "snmp-index": 565}, {"router": "mx1.ham.de.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-2/1/0", "et-2/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-HAM-IPTRUNK | AMS-HAM |  ", "circuits": [{"id": 708727, "name": "AMS-HAM-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 631}, {"router": "mx1.ham.de.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/0/1", "xe-1/2/1", "xe-1/2/2"], "description": "LAG INFRASTRUCTURE BACKBONE TAL SRF9930557 | ham-tal", "circuits": [], "snmp-index": 566}, {"router": "mx1.ham.de.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-0/0/1", "xe-1/2/1", "xe-1/2/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #HAM_TAL_IPTRUNK | TAL-HAM |  ", "circuits": [{"id": 708730, "name": "HAM_TAL_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 635}, {"router": "mx1.ham.de.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["et-5/1/0", "et-5/3/0"], "description": "LAG CUSTOMER DFN SRF9924459 |", "circuits": [], "snmp-index": 577}, {"router": "mx1.ham.de.geant.net", "name": "ae10.100", "bundle": [], "bundle-parents": ["et-5/1/0", "et-5/3/0"], "description": "SRV_GLOBAL CUSTOMER DFN #DFN-AP2 | ASN680 | ", "circuits": [{"id": 663040, "name": "DFN-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 606}, {"router": "mx1.ham.de.geant.net", "name": "ae10.111", "bundle": [], "bundle-parents": ["et-5/1/0", "et-5/3/0"], "description": "SRV_L3VPN CUSTOMER DFN #DFN-AP2-LHCONE | ASN680", "circuits": [{"id": 662942, "name": "DFN-AP2-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 608}, {"router": "mx1.ham.de.geant.net", "name": "ae10.112", "bundle": [], "bundle-parents": ["et-5/1/0", "et-5/3/0"], "description": "SRV_MDVPN CUSTOMER DFN #DFN_AP2_BGP_LU_CoC | ASN680 | DFN-BGP-LU-CoC-2", "circuits": [{"id": 663151, "name": "DFN_AP2_BGP_LU_COC", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 610}, {"router": "mx1.ham.de.geant.net", "name": "ae10.333", "bundle": [], "bundle-parents": ["et-5/1/0", "et-5/3/0"], "description": "SRV_IAS CUSTOMER DFN #DFN-AP2-IAS IASPS | ASN680 | ", "circuits": [{"id": 663129, "name": "DFN-AP2-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 622}, {"router": "mx1.ham.de.geant.net", "name": "ae10.354", "bundle": [], "bundle-parents": ["et-5/1/0", "et-5/3/0"], "description": "SRV_L2CIRCUIT CUSTOMER SINET DFN #AMS-HAM-JAXA-SINET-DFN-14006 |", "circuits": [{"id": 706057, "name": "AMS-HAM-JAXA-SINET-DFN-14006", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 612}, {"router": "mx1.ham.de.geant.net", "name": "ae10.667", "bundle": [], "bundle-parents": ["et-5/1/0", "et-5/3/0"], "description": "SRV_CLS CUSTOMER DFN #DFN-AP2-CLS|ASN680 | ", "circuits": [{"id": 663207, "name": "DFN-AP2-CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 697}, {"router": "mx1.ham.de.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["xe-0/2/1", "xe-0/2/2"], "description": "LAG CUSTOMER NORDUNET SRF9919631 |", "circuits": [], "snmp-index": 578}, {"router": "mx1.ham.de.geant.net", "name": "ae11.100", "bundle": [], "bundle-parents": ["xe-0/2/1", "xe-0/2/2"], "description": "SRV_GLOBAL CUSTOMER NORDUNET #NORDUNET-AP2 | ASN2603 |", "circuits": [{"id": 663243, "name": "NORDUNET-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 634}, {"router": "mx1.ham.de.geant.net", "name": "ae11.3003", "bundle": [], "bundle-parents": ["xe-0/2/1", "xe-0/2/2"], "description": "SRV_MDVPN CUSTOMER NORDUNET #NORDUNET_AP2_BGP_LU_CoC | MD VPN CoC-NORDUNET | NORDUnet-BGP-LU-CoC-2", "circuits": [{"id": 663247, "name": "NORDUNET_AP2_BGP_LU_COC", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 692}, {"router": "mx1.ham.de.geant.net", "name": "ae11.3901", "bundle": [], "bundle-parents": ["xe-0/2/1", "xe-0/2/2"], "description": "SRV_GCS CUSTOMER NORDUNET  #Nordunet_Laurea_ExpressRoute_Vlan3901 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707123, "name": "NORDUNET_LAUREA_EXPRESSROUTE_VLAN3901", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 924}, {"router": "mx1.ham.de.geant.net", "name": "ae11.3903", "bundle": [], "bundle-parents": ["xe-0/2/1", "xe-0/2/2"], "description": "SRV_GCS CUSTOMER NORDUNET  #NORDUNET_JYV_ExpressRoute_VLAN3903 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707125, "name": "NORDUNET_JYV_EXPRESSROUTE_VLAN3903", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 930}, {"router": "mx1.ham.de.geant.net", "name": "ae11.3905", "bundle": [], "bundle-parents": ["xe-0/2/1", "xe-0/2/2"], "description": "SRV_GCS CUSTOMER NORDUNET  #Nordunet_OULU_ExpressRoute_Vlan3905 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707131, "name": "NORDUNET_OULU_EXPRESSROUTE_VLAN3905", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 936}, {"router": "mx1.ham.de.geant.net", "name": "ae11.3907", "bundle": [], "bundle-parents": ["xe-0/2/1", "xe-0/2/2"], "description": "SRV_GCS CUSTOMER NORDUNET  #Nordunet_Aalto_ExpressRoute_Vlan3907 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707130, "name": "NORDUNET_AALTO_EXPRESSROUTE_VLAN3907", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 940}, {"router": "mx1.ham.de.geant.net", "name": "ae11.3908", "bundle": [], "bundle-parents": ["xe-0/2/1", "xe-0/2/2"], "description": "SRV_GCS CUSTOMER NORDUNET #Nordunet_LTU_ExpressRoute_Vlan3908 UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706997, "name": "NORDUNET-LTU-EXPRESSROUTE-VLAN3908", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 951}, {"router": "mx1.ham.de.geant.net", "name": "ae11.3911", "bundle": [], "bundle-parents": ["xe-0/2/1", "xe-0/2/2"], "description": "SRV_GCS CUSTOMER NORDUNET  #Nordunet_HHU_ExpressRoute_Vlan3911 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706557, "name": "BELNET_PREMIER_EXPRESSROUTE_VLAN4093", "type": "EXPRESS ROUTE", "status": "operational"}, {"id": 708357, "name": "NORDUNET_HHU_EXPRESSROUTE_VLAN3911", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 960}, {"router": "mx1.ham.de.geant.net", "name": "ae11.3913", "bundle": [], "bundle-parents": ["xe-0/2/1", "xe-0/2/2"], "description": "SRV_GCS CUSTOMER NORDUNET  #Nordunet_TUNI_ExpressRoute_Vlan3913 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707119, "name": "NORDUNET_TUNI_EXPRESSROUTE_VLAN3913", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 964}, {"router": "mx1.ham.de.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "LAG CUSTOMER PSNC SRF9938339 | ", "circuits": [], "snmp-index": 579}, {"router": "mx1.ham.de.geant.net", "name": "ae12.20", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_MDVPN CUSTOMER PIONIER #PIONIER_AP2_BGP_LU_CoC | MD VPN CoC #2 - PIONIER | PSNC-BGP-LU-CoC-2", "circuits": [{"id": 662931, "name": "PIONIER_AP2_BGP_LU_COC", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 731}, {"router": "mx1.ham.de.geant.net", "name": "ae12.111", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_L3VPN CUSTOMER PIONIER #PIONIER_AP2_LHCONE | ASN8501", "circuits": [{"id": 663176, "name": "PIONIER_AP2_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 734}, {"router": "mx1.ham.de.geant.net", "name": "ae12.320", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_GLOBAL CUSTOMER PIONIER #PIONIER-AP2 | ASN8501 | PIONIER Backup", "circuits": [{"id": 663232, "name": "PIONIER-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 738}, {"router": "mx1.ham.de.geant.net", "name": "ae12.334", "bundle": [], "bundle-parents": ["et-1/1/0"], "description": "SRV_IAS CUSTOMER PIONIER #PIONIER_AP2_IAS IASPS | ASN8501 | ", "circuits": [{"id": 662993, "name": "PIONIER_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 736}, {"router": "mx1.ham.de.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 605}, {"router": "mx1.ham.de.geant.net", "name": "irb.250", "bundle": [], "bundle-parents": [], "description": "SRV_TAAS INFRASTRUCTURE GTS #TAAS_CONTROL_HAMBURG_vlan250 | TAAS CONTROL", "circuits": [], "snmp-index": 853}, {"router": "mx1.ham.de.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #infinera-ham-de-vlan999 |INFINERA   ", "circuits": [], "snmp-index": 835}, {"router": "mx1.dub2.ie.geant.net", "name": "xe-0/0/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER HEANET P_AE10 SRF9948758 | HEANET-AP2-LL3", "circuits": [], "snmp-index": 554}, {"router": "mx1.dub2.ie.geant.net", "name": "xe-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL", "circuits": [], "snmp-index": 555}, {"router": "mx1.dub2.ie.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER JISC SRF9913015 | NRENBBEXT_JANET", "circuits": [{"id": 707050, "name": "DUB-LON_NRENBBEXT_JANET_13015", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 556}, {"router": "mx1.dub2.ie.geant.net", "name": "xe-0/1/0.3015", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER JISC JISC #dub-lon_NRENBBEXT_JANET_13015 | backup for niran ", "circuits": [{"id": 707050, "name": "DUB-LON_NRENBBEXT_JANET_13015", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 632}, {"router": "mx1.dub2.ie.geant.net", "name": "xe-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 557}, {"router": "mx1.dub2.ie.geant.net", "name": "xe-1/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE NON-OPERATIONAL", "circuits": [], "snmp-index": 526}, {"router": "mx1.dub2.ie.geant.net", "name": "xe-1/0/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER HEANET P_AE10 SRF0000001 | HEANET-AP2-LL2", "circuits": [], "snmp-index": 527}, {"router": "mx1.dub2.ie.geant.net", "name": "xe-1/1/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER HEANET P_AE10 SRF9925903 | HEANET-AP2-LL1", "circuits": [], "snmp-index": 528}, {"router": "mx1.dub2.ie.geant.net", "name": "xe-1/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 529}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #temp_access-vlan-dub-ie ENGINEER_ACCESS |", "circuits": [], "snmp-index": 719}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN | EXFO management", "circuits": [], "snmp-index": 691}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access #EXFO_MANAGEMENT_VLAN1 _DUB2_IE | EXFO management", "circuits": [], "snmp-index": 752}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE |reserved for PSMP", "circuits": [], "snmp-index": 692}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | dub2 ie POP LAN| Under testing", "circuits": [], "snmp-index": 693}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/3.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access  #ps-dub2-ie-idrac-vlan23    | perfSONAR iDRAC", "circuits": [{"id": 663048, "name": "PS-DUB2-IE-IDRAC-VLAN23", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 768}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 694}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 695}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 696}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 697}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 698}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 699}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 700}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 701}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 702}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 703}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 704}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 705}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 706}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 707}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 708}, {"router": "mx1.dub2.ie.geant.net", "name": "ge-1/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 709}, {"router": "mx1.dub2.ie.geant.net", "name": "et-2/0/0", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF9941713 | dub2-lon2 LEVEL3 ID:440233726", "circuits": [], "snmp-index": 750}, {"router": "mx1.dub2.ie.geant.net", "name": "lt-2/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 762}, {"router": "mx1.dub2.ie.geant.net", "name": "lt-2/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-dub2-ie-RE_IAS| BGP PEERING - RE SIDE", "circuits": [{"id": 710671, "name": "BGPPEERING-DUB2-IE-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 765}, {"router": "mx1.dub2.ie.geant.net", "name": "lt-2/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #DUB2-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 766}, {"router": "mx1.dub2.ie.geant.net", "name": "et-3/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9941715 | dub-dub | Century Link (L3) ID: 440233728", "circuits": [], "snmp-index": 751}, {"router": "mx1.dub2.ie.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-3/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE DUB SRF9929995 | dub-dub", "circuits": [], "snmp-index": 581}, {"router": "mx1.dub2.ie.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-3/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #DUB-DUB2-IPTRUNK | DUB-DUB2 |  ", "circuits": [{"id": 708863, "name": "DUB_DUB2_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 711}, {"router": "mx1.dub2.ie.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-2/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE LON2 SRF9942043 | dub2-lon2", "circuits": [], "snmp-index": 583}, {"router": "mx1.dub2.ie.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-2/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #DUB2-LON2-IPTRUNK | LON2-DUB2 |  ", "circuits": [{"id": 709012, "name": "DUB2-LON2-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 755}, {"router": "mx1.dub2.ie.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-1/1/0"], "description": "LAG CUSTOMER HEANET SRF9925909 | HEANET-AP2-LAG", "circuits": [], "snmp-index": 596}, {"router": "mx1.dub2.ie.geant.net", "name": "ae10.12", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-1/1/0"], "description": "SRV_GLOBAL CUSTOMER HEANET #HEANET-AP2 | ASN1213 | ", "circuits": [{"id": 662976, "name": "HEANET-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 713}, {"router": "mx1.dub2.ie.geant.net", "name": "ae10.30", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-1/1/0"], "description": "SRV_MDVPN CUSTOMER HEANET AP2 #HEANET-BGP-LU-CoC-1 |", "circuits": [{"id": 663160, "name": "HEANET-BGP-LU-COC-1", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 712}, {"router": "mx1.dub2.ie.geant.net", "name": "ae10.333", "bundle": [], "bundle-parents": ["xe-0/0/0", "xe-1/0/1", "xe-1/1/0"], "description": "SRV_IAS CUSTOMER HEANET #HEANET-AP2-IAS IASPS | ASN1213 ", "circuits": [{"id": 663214, "name": "HEANET-AP2-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 658}, {"router": "mx1.dub2.ie.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 582}, {"router": "mx1.gen.ch.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN |", "circuits": [], "snmp-index": 1205}, {"router": "mx1.gen.ch.geant.net", "name": "lt-0/0/0.12", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN | MDVPN CoC, GN PE to VPN-Proxy for BGP-LU", "circuits": [], "snmp-index": 1206}, {"router": "mx1.gen.ch.geant.net", "name": "lt-0/0/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #GEANT_IBGP_Peering-geneva| GN PE to VPN-Proxy for IBGP ", "circuits": [{"id": 710679, "name": "GEANT_IBGP_PEERING-GENEVA", "type": "MD-VPN (INTERNAL)", "status": "operational"}], "snmp-index": 1208}, {"router": "mx1.gen.ch.geant.net", "name": "xe-0/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 602}, {"router": "mx1.gen.ch.geant.net", "name": "xe-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 603}, {"router": "mx1.gen.ch.geant.net", "name": "xe-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 604}, {"router": "mx1.gen.ch.geant.net", "name": "xe-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER CERN SRF9925993 | LHC_CERN via SWITCH GN+", "circuits": [{"id": 707040, "name": "GEN-GEN_GARR-CERNLIGHT_CERN-GARR_16011", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 605}, {"router": "mx1.gen.ch.geant.net", "name": "xe-0/1/1.1100", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER CERN GARR #gen-gen_GARR-CERNlight_CERN-GARR_16011 ", "circuits": [{"id": 707040, "name": "GEN-GEN_GARR-CERNLIGHT_CERN-GARR_16011", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 767}, {"router": "mx1.gen.ch.geant.net", "name": "xe-0/1/1.1200", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER CERN GARR #gen-gen_GARR-CERNlight_CERN-GARR_16034 |", "circuits": [{"id": 706977, "name": "GEN-GEN_GARR-CERNLIGHT_CERN-GARR_16034", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 807}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915889 | GEN01-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 607}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 608}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 609}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 610}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 611}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 612}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 613}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/2/8", "bundle": [], "bundle-parents": [], "description": "PHY RESERVED|Reserved for GCS Testing", "circuits": [], "snmp-index": 614}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 615}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN | to Cisco SW1.GEN.CH port 3", "circuits": [], "snmp-index": 616}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 617}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/2", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ESNET SRF9927963 | Gen513-EEX_ESNET_1G", "circuits": [], "snmp-index": 618}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915891 | GEN01-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 619}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | gen ch POP LAN", "circuits": [], "snmp-index": 620}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-gen-ch-DRAC | HADES DRAC", "circuits": [{"id": 663119, "name": "HADES-GEN-CH-DRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 813}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP_GENEVA_VLAN22 | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", "circuits": [{"id": 663037, "name": "OWAMP_GENEVA_VLAN22", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 814}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.23", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-gen-ch-idrac |perfSONAR iDRAC LHCONE", "circuits": [{"id": 663106, "name": "PS-GEN-CH-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 768}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.24", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-gen-ch-management |perfSONAR MGMT LHCONE", "circuits": [{"id": 663242, "name": "PS-GEN-CH-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 769}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.60", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-gen-ch| KVMoIP", "circuits": [{"id": 663239, "name": "KVMOIP-GEN-CH", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 816}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.170", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ipcamera-gen-ch | IP cameras", "circuits": [{"id": 663200, "name": "IPCAMERA-GEN-CH", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 879}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.201", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #GEN_Groove_1 | GEN Groove 1  ", "circuits": [{"id": 663053, "name": "GEN_GROOVE_1", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1450}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.202", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #GEN_Groove_1_Management | GEN Groove 1 Direct Management", "circuits": [{"id": 663059, "name": "GEN_GROOVE_1_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1451}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.301", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #GEN_Groove_2 | GEN Groove 2  ", "circuits": [{"id": 662947, "name": "GEN_GROOVE_2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1452}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.302", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #GEN_Groove_2_Management | GEN Groove 2 Direct Management", "circuits": [{"id": 662911, "name": "GEN_GROOVE_2_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1453}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.401", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #GEN_Groove_3 | GEN Groove 3  ", "circuits": [{"id": 663081, "name": "GEN_GROOVE_3", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1454}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.402", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access   #GEN_Groove_3_Management | GEN Groove 3 Direct Management", "circuits": [{"id": 662950, "name": "GEN_GROOVE_3_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1455}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/4.991", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access #GEN_Groove | GEN Groove G30", "circuits": [{"id": 707223, "name": "GEN_GROOVE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 628}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 621}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP", "circuits": [], "snmp-index": 622}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/7", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ESNET SRF9927965 | Gen272-EEX_ESNET_1G", "circuits": [], "snmp-index": 623}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 624}, {"router": "mx1.gen.ch.geant.net", "name": "ge-0/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 625}, {"router": "mx1.gen.ch.geant.net", "name": "et-1/0/2", "bundle": ["ae7"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 SRF0000001 |", "circuits": [], "snmp-index": 1333}, {"router": "mx1.gen.ch.geant.net", "name": "et-1/0/5", "bundle": ["ae23"], "bundle-parents": [], "description": "PHY CUSTOMER SWITCH SRF19136 |", "circuits": [], "snmp-index": 1334}, {"router": "mx1.gen.ch.geant.net", "name": "et-1/1/2", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY CUSTOMER CERN P_AE17 SRF0000001 |", "circuits": [], "snmp-index": 1346}, {"router": "mx1.gen.ch.geant.net", "name": "et-1/1/5", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER CERN LHCONE P_AE10 SRF9928891 | CERNLIGHT", "circuits": [], "snmp-index": 1347}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 556}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/1", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER CERN |#gen-mad_LHC_CERN-REDIRIS_07003  hairpin - to customer", "circuits": [{"id": 669609, "name": "AMS-GEN_LHC_CERN-ASGC_07014", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 557}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER CERN |#gen-mad_LHC_CERN-REDIRIS_07003 - to customer", "circuits": [], "snmp-index": 644}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9921395 | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", "circuits": [{"id": 708285, "name": "PS-GEN-CH-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1297}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/2.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-gen-ch-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", "circuits": [{"id": 708285, "name": "PS-GEN-CH-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1387}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/3", "bundle": ["ae20"], "bundle-parents": [], "description": "PHY RE_INTERCONNECT NKN SRF20035", "circuits": [], "snmp-index": 1292}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1293}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/5", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER CERN |#ams-gen_LHC_CERN-ASGC_07014  hairpin - to customer", "circuits": [{"id": 669613, "name": "GEN-MAD_LHC_CERN-REDIRIS_07003", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 1294}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/5.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER CERN |#ams-gen_LHC_CERN-ASGC_07014 - to customer", "circuits": [], "snmp-index": 645}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/6", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER CERN |#gen-mad_LHC_CERN-REDIRIS_07003 - to DTNX", "circuits": [{"id": 669609, "name": "AMS-GEN_LHC_CERN-ASGC_07014", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 1295}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/6.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER CERN |#gen-mad_LHC_CERN-REDIRIS_07003 - to DTNX", "circuits": [], "snmp-index": 646}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/7", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER CERN |#ams-gen_LHC_CERN-ASGC_07014 - to DTNX", "circuits": [{"id": 669613, "name": "GEN-MAD_LHC_CERN-REDIRIS_07003", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 1296}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/0/7.0", "bundle": [], "bundle-parents": [], "description": "SRV_10GGBS CUSTOMER CERN |#ams-gen_LHC_CERN-ASGC_07014 - to DTNX", "circuits": [], "snmp-index": 649}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL", "circuits": [], "snmp-index": 558}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/1/1", "bundle": ["ae20"], "bundle-parents": [], "description": "PHY CUSTOMER NKN SRF19102 |", "circuits": [], "snmp-index": 559}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1298}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/1/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1299}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1300}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1301}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/1/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1302}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1303}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/2/0", "bundle": ["ae18"], "bundle-parents": [], "description": "PHY PUBLIC CIXP P_AE18 SRF9943491 | CIXP port: E513-X-XBRML-1.cern.ch eth4/1", "circuits": [], "snmp-index": 1304}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1305}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1306}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1307}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1308}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1336}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1337}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1335}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1338}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1339}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1340}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1341}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1342}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1343}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1344}, {"router": "mx1.gen.ch.geant.net", "name": "xe-2/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1345}, {"router": "mx1.gen.ch.geant.net", "name": "et-3/0/2", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 837}, {"router": "mx1.gen.ch.geant.net", "name": "et-3/0/5", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 847}, {"router": "mx1.gen.ch.geant.net", "name": "et-3/1/2", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 849}, {"router": "mx1.gen.ch.geant.net", "name": "et-4/0/2", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER GARR P_AE12 SRF9926123 SRF0000001 |", "circuits": [], "snmp-index": 1435}, {"router": "mx1.gen.ch.geant.net", "name": "et-4/0/5", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1436}, {"router": "mx1.gen.ch.geant.net", "name": "et-4/1/2", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1439}, {"router": "mx1.gen.ch.geant.net", "name": "et-4/1/5", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1440}, {"router": "mx1.gen.ch.geant.net", "name": "et-5/0/2", "bundle": ["ae23"], "bundle-parents": [], "description": "PHY CUSTOMER SWITCH SRF19136 |", "circuits": [{"id": 680167, "name": "GEN_LON_CERN_JISC_20040", "type": "GEANT LAMBDA", "status": "operational"}], "snmp-index": 1437}, {"router": "mx1.gen.ch.geant.net", "name": "et-5/0/5", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1438}, {"router": "mx1.gen.ch.geant.net", "name": "et-5/1/2", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1441}, {"router": "mx1.gen.ch.geant.net", "name": "et-5/1/5", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1442}, {"router": "mx1.gen.ch.geant.net", "name": "et-8/0/2", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ESNET SRF9928169 |", "circuits": [], "snmp-index": 1528}, {"router": "mx1.gen.ch.geant.net", "name": "et-8/0/2.104", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #CH_ESNET_ipv4 | ASN293 | IPv4 ", "circuits": [{"id": 663008, "name": "CH_ESNET_IPV4", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1532}, {"router": "mx1.gen.ch.geant.net", "name": "et-8/0/2.106", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #CH_ESNET_ipv6 | ASN293 | IPv6 ", "circuits": [{"id": 662940, "name": "CH_ESNET_IPV6", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 1533}, {"router": "mx1.gen.ch.geant.net", "name": "et-8/0/2.111", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN RE_INTERCONNECT ESNET #ESNET_GEN_LHCONE | ASN293", "circuits": [{"id": 663134, "name": "ESNET_GEN_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1534}, {"router": "mx1.gen.ch.geant.net", "name": "et-8/0/5", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 SRF0000001 |", "circuits": [], "snmp-index": 1529}, {"router": "mx1.gen.ch.geant.net", "name": "lt-8/1/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 1602}, {"router": "mx1.gen.ch.geant.net", "name": "lt-8/1/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-gen-ch-RE_IAS| BGP PEERING - RE SIDE", "circuits": [{"id": 710699, "name": "BGPPEERING-GEN-CH-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1605}, {"router": "mx1.gen.ch.geant.net", "name": "lt-8/1/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #GEN-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 1606}, {"router": "mx1.gen.ch.geant.net", "name": "lt-8/1/0.1112", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS LHCONE #LHCONE_routing-instance_Peering-geneva-lhcone| LHCONE routing-instance ", "circuits": [{"id": 710687, "name": "LHCONE_ROUTING-INSTANCE_PEERING-GENEVA-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1607}, {"router": "mx1.gen.ch.geant.net", "name": "lt-8/1/0.2111", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS LHCONE #MASTER_instance_Peering-geneva-lhcone| MASTER instance ", "circuits": [{"id": 710692, "name": "MASTER_INSTANCE_PEERING-GENEVA-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1608}, {"router": "mx1.gen.ch.geant.net", "name": "et-8/1/2", "bundle": ["ae14"], "bundle-parents": [], "description": "PHY CUSTOMER RENATER P_AE14 SRF9943495 |", "circuits": [], "snmp-index": 1530}, {"router": "mx1.gen.ch.geant.net", "name": "et-8/1/5", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER RENATER LHCONE SRF9943323 P_AE11 |", "circuits": [], "snmp-index": 1531}, {"router": "mx1.gen.ch.geant.net", "name": "et-10/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1250}, {"router": "mx1.gen.ch.geant.net", "name": "et-10/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1251}, {"router": "mx1.gen.ch.geant.net", "name": "et-10/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1252}, {"router": "mx1.gen.ch.geant.net", "name": "et-10/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1253}, {"router": "mx1.gen.ch.geant.net", "name": "et-11/0/2", "bundle": ["ae21"], "bundle-parents": [], "description": "PHY CUSTOMER CERN LHCONE-2 P_AE21 SRF20066 |", "circuits": [], "snmp-index": 1214}, {"router": "mx1.gen.ch.geant.net", "name": "et-11/0/5", "bundle": ["ae22"], "bundle-parents": [], "description": "PHY CUSTOMER CERN EXT-2 P_AE22 SRF20066 |", "circuits": [], "snmp-index": 1215}, {"router": "mx1.gen.ch.geant.net", "name": "et-11/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1216}, {"router": "mx1.gen.ch.geant.net", "name": "et-11/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1219}, {"router": "mx1.gen.ch.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-4/0/5", "et-4/1/2", "et-4/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE GEN SRF0000001 | fra-gen | Coriant G30 300G", "circuits": [], "snmp-index": 652}, {"router": "mx1.gen.ch.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-4/0/5", "et-4/1/2", "et-4/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-GEN-IPTRUNK | FRA-GEN |Coriant G30 300G", "circuits": [{"id": 708728, "name": "FRA_GEN_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1459}, {"router": "mx1.gen.ch.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["et-5/0/5", "et-5/1/2", "et-5/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE GEN SRF0000001 | gen-par | Coriant G30 300G", "circuits": [], "snmp-index": 654}, {"router": "mx1.gen.ch.geant.net", "name": "ae5.0", "bundle": [], "bundle-parents": ["et-5/0/5", "et-5/1/2", "et-5/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN_PAR_IPTRUNK | GEN-PAR |Coriant G30 300G", "circuits": [{"id": 708712, "name": "GEN_PAR_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1463}, {"router": "mx1.gen.ch.geant.net", "name": "ae6", "bundle": [], "bundle-parents": ["et-3/0/2", "et-3/0/5", "et-3/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE GEN SRF0000001 | gen-mil2 | Coriant G30 300G", "circuits": [], "snmp-index": 655}, {"router": "mx1.gen.ch.geant.net", "name": "ae6.0", "bundle": [], "bundle-parents": ["et-3/0/2", "et-3/0/5", "et-3/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN_MIL2_IPTRUNK | GEN-MIL2 |Coriant G30 300G", "circuits": [{"id": 708720, "name": "GEN_MIL2_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 803}, {"router": "mx1.gen.ch.geant.net", "name": "ae7", "bundle": [], "bundle-parents": ["et-1/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE MAD SRF0000001 | gen-mad", "circuits": [], "snmp-index": 683}, {"router": "mx1.gen.ch.geant.net", "name": "ae7.0", "bundle": [], "bundle-parents": ["et-1/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN_MAD_IPTRUNK | MAD-GEN |  ", "circuits": [{"id": 708740, "name": "GEN_MAD_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 662}, {"router": "mx1.gen.ch.geant.net", "name": "ae8", "bundle": [], "bundle-parents": ["et-8/0/5"], "description": "LAG INFRASTRUCTURE BACKBONE MAR SRF0000001 | gen-mar", "circuits": [], "snmp-index": 686}, {"router": "mx1.gen.ch.geant.net", "name": "ae8.0", "bundle": [], "bundle-parents": ["et-8/0/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN_MAR_IPTRUNK | MAR-GEN |  ", "circuits": [{"id": 708750, "name": "GEN_MAR_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1230}, {"router": "mx1.gen.ch.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "LAG CUSTOMER CERN SRF9921193 |", "circuits": [], "snmp-index": 697}, {"router": "mx1.gen.ch.geant.net", "name": "ae10.111", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_L3VPN CUSTOMER CERN #CERN_GEN_LHCONE | ASN513", "circuits": [{"id": 663086, "name": "CERN_GEN_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 798}, {"router": "mx1.gen.ch.geant.net", "name": "ae10.112", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_L2CIRCUIT CUSTOMER ORACLE CERN #fra-gen_ORACLE-CERN_20150 |", "circuits": [{"id": 705439, "name": "FRA-GEN_ORACLE-CERN_20150", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 852}, {"router": "mx1.gen.ch.geant.net", "name": "ae10.113", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_L2CIRCUIT CUSTOMER ORACLE CERN #fra-gen_ORACLE-CERN_19114 |", "circuits": [{"id": 705431, "name": "FRA-GEN_ORACLE-CERN_19114", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 861}, {"router": "mx1.gen.ch.geant.net", "name": "ae10.114", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_L2CIRCUIT CUSTOMER ORACLE CERN #fra-gen_ORACLE-CERN_20094 |", "circuits": [{"id": 705442, "name": "FRA-GEN_ORACLE-CERN_20094", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 907}, {"router": "mx1.gen.ch.geant.net", "name": "ae10.496", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_GCS CUSTOMER CERN #CERN_GVA_ExpressRoute_VLAN496 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706945, "name": "CERN_GVA_EXPRESSROUTE_VLAN496", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1257}, {"router": "mx1.gen.ch.geant.net", "name": "ae10.497", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_GCS CUSTOMER CERN | #CERN_CERN_ExpressRoute_VLAN497 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706486, "name": "CERN-CERN-EXPRESSROUTE-VLAN497", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 631}, {"router": "mx1.gen.ch.geant.net", "name": "ae10.2905", "bundle": [], "bundle-parents": ["et-1/1/5"], "description": "SRV_L2CIRCUIT CUSTOMER CERN GEANT #CERN-to-SDN-BoD-CORSA-in-Paris", "circuits": [{"id": 706756, "name": "CERN-TO-SDN-BOD-CORSA-IN-PARIS", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 665}, {"router": "mx1.gen.ch.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["et-8/1/5"], "description": "LAG CUSTOMER RENATER LHCONE SRF9921603 |", "circuits": [], "snmp-index": 698}, {"router": "mx1.gen.ch.geant.net", "name": "ae11.111", "bundle": [], "bundle-parents": ["et-8/1/5"], "description": "SRV_L3VPN CUSTOMER RENATER #RENATER_AP2_IPv4_LHCONE | ASN2200", "circuits": [{"id": 663068, "name": "RENATER_AP2_IPV4_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 800}, {"router": "mx1.gen.ch.geant.net", "name": "ae11.116", "bundle": [], "bundle-parents": ["et-8/1/5"], "description": "SRV_L3VPN CUSTOMER RENATER #RENATER_AP2_IPv6_LHCONE | ASN2200", "circuits": [{"id": 663016, "name": "RENATER_AP2_IPV6_LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 875}, {"router": "mx1.gen.ch.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "LAG CUSTOMER GARR SRF9916009 |", "circuits": [], "snmp-index": 699}, {"router": "mx1.gen.ch.geant.net", "name": "ae12.111", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "SRV_L3VPN CUSTOMER GARR #GARR-AP2-LHCONE | ASN137", "circuits": [{"id": 663175, "name": "GARR-AP2-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 700}, {"router": "mx1.gen.ch.geant.net", "name": "ae12.333", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "SRV_IAS CUSTOMER GARR #GARR-AP2-IAS IASPS | ASN137 ", "circuits": [{"id": 663118, "name": "GARR-AP2-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 745}, {"router": "mx1.gen.ch.geant.net", "name": "ae12.667", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "SRV_CLS CUSTOMER GARR #GARR-AP2-CLS|ASN137 | ", "circuits": [{"id": 663166, "name": "GARR-AP2-CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 787}, {"router": "mx1.gen.ch.geant.net", "name": "ae12.1000", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "SRV_GLOBAL CUSTOMER GARR #GARR-AP2 | ASN137 | ", "circuits": [{"id": 663180, "name": "GARR-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 696}, {"router": "mx1.gen.ch.geant.net", "name": "ae12.1001", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "SRV_MDVPN CUSTOMER GARR #GARR_AP1_BGP_LU_CoC | GARR-BGP-LU-CoC-2", "circuits": [{"id": 663201, "name": "GARR_AP1_BGP_LU_COC", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 886}, {"router": "mx1.gen.ch.geant.net", "name": "ae12.1100", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER GARR CERN #gen-gen_GARR-CERNlight_CERN-GARR_16011 ", "circuits": [{"id": 707040, "name": "GEN-GEN_GARR-CERNLIGHT_CERN-GARR_16011", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 765}, {"router": "mx1.gen.ch.geant.net", "name": "ae12.1200", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER CERN GARR #gen-gen_GARR-CERNlight_CERN-GARR_16034 |", "circuits": [{"id": 706977, "name": "GEN-GEN_GARR-CERNLIGHT_CERN-GARR_16034", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 805}, {"router": "mx1.gen.ch.geant.net", "name": "ae12.4087", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "SRV_GCS CUSTOMER GARR | #GARR_UDMilano_ExpressRoute_Vlan4087 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707644, "name": "GARR_UDMILANO_EXPRESSROUTE_VLAN4087", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 639}, {"router": "mx1.gen.ch.geant.net", "name": "ae12.4089", "bundle": [], "bundle-parents": ["et-4/0/2"], "description": "SRV_GCS CUSTOMER GARR | #GARR_ROMA_ExpressRoute_Vlan4089 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 707342, "name": "GARR_ROMA_EXPRESSROUTE_VLAN4089", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 630}, {"router": "mx1.gen.ch.geant.net", "name": "ae14", "bundle": [], "bundle-parents": ["et-8/1/2"], "description": "LAG CUSTOMER RENATER SRF9923751 |", "circuits": [], "snmp-index": 704}, {"router": "mx1.gen.ch.geant.net", "name": "ae14.160", "bundle": [], "bundle-parents": ["et-8/1/2"], "description": "SRV_GLOBAL CUSTOMER RENATER #RENATER-AP2 | ASN2200 |", "circuits": [{"id": 663060, "name": "RENATER-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 828}, {"router": "mx1.gen.ch.geant.net", "name": "ae14.161", "bundle": [], "bundle-parents": ["et-8/1/2"], "description": "SRV_GLOBAL CUSTOMER RENATER #RENATER_RTBH_GENEVA | ASN2200 | RTBH ", "circuits": [{"id": 662958, "name": "RENATER_RTBH_GENEVA", "type": "GEANT IP", "status": "operational"}], "snmp-index": 916}, {"router": "mx1.gen.ch.geant.net", "name": "ae14.333", "bundle": [], "bundle-parents": ["et-8/1/2"], "description": "SRV_IAS CUSTOMER RENATER #RENATER_AP2_IAS IASPS | ASN2200 ", "circuits": [{"id": 678048, "name": "RENATER_AP2_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 895}, {"router": "mx1.gen.ch.geant.net", "name": "ae14.518", "bundle": [], "bundle-parents": ["et-8/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER NISN #lon-gen_CNES_Renater_NISN_09201 |", "circuits": [{"id": 709299, "name": "LON-GEN_CNES_NISN-RENATER", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 827}, {"router": "mx1.gen.ch.geant.net", "name": "ae14.667", "bundle": [], "bundle-parents": ["et-8/1/2"], "description": "SRV_CLS CUSTOMER RENATER #RENATER_AP2_CLS|ASN2200 | ", "circuits": [{"id": 662915, "name": "RENATER_A1_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 529}, {"router": "mx1.gen.ch.geant.net", "name": "ae14.990", "bundle": [], "bundle-parents": ["et-8/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER SINET #AMS-GEN-ITER-SINET-RENATER-20025 |", "circuits": [{"id": 705455, "name": "AMS-GEN-ITER-SINET-RENATER-20025", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 887}, {"router": "mx1.gen.ch.geant.net", "name": "ae14.1290", "bundle": [], "bundle-parents": ["et-8/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER BELNET #bru-gen_IMINDS_IMINDS-RENATER_16023 |", "circuits": [{"id": 706946, "name": "BRU-GEN_IMINDS_IMINDS-RENATER_16023", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 774}, {"router": "mx1.gen.ch.geant.net", "name": "ae14.2061", "bundle": [], "bundle-parents": ["et-8/1/2"], "description": "SRV_MDVPN CUSTOMER RENATER #RENATER_AP2_BGP_LU_CoC | MD VPN CoC - RENATER | RENATER-BGP-LU-CoC-2", "circuits": [{"id": 663121, "name": "RENATER_AP2_BGP_LU_COC", "type": "MD-VPN (NATIVE)", "status": "operational"}], "snmp-index": 788}, {"router": "mx1.gen.ch.geant.net", "name": "ae14.3151", "bundle": [], "bundle-parents": ["et-8/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER SINET #ams-gen_Grid5000_Renater-SINET_07201 |", "circuits": [{"id": 705429, "name": "AMS-GEN_GRID5000_RENATER-SINET_07201", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 826}, {"router": "mx1.gen.ch.geant.net", "name": "ae14.3157", "bundle": [], "bundle-parents": ["et-8/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER RENATER INTERNET2 #gen-par_LSST_RENATER-INTERNET2_16005 |", "circuits": [{"id": 661892, "name": "GEN-PAR_LSST_RENATER-INTERNET2_16005", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 872}, {"router": "mx1.gen.ch.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "LAG CUSTOMER CERN SRF991519 |", "circuits": [], "snmp-index": 707}, {"router": "mx1.gen.ch.geant.net", "name": "ae17.200", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_GLOBAL CUSTOMER CERN #CERN-AP1 | ASN513 |", "circuits": [{"id": 662952, "name": "CERN-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 920}, {"router": "mx1.gen.ch.geant.net", "name": "ae17.333", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_IAS CUSTOMER CERN #CERN_AP_IAS IASPS | ASN513 ", "circuits": [{"id": 663049, "name": "CERN_AP_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 748}, {"router": "mx1.gen.ch.geant.net", "name": "ae17.667", "bundle": [], "bundle-parents": ["et-1/1/2"], "description": "SRV_CLS CUSTOMER CERN #CERN_AP_CLS|ASN513 | ", "circuits": [{"id": 662938, "name": "CERN_AP_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 761}, {"router": "mx1.gen.ch.geant.net", "name": "ae18", "bundle": [], "bundle-parents": ["xe-2/2/0"], "description": "LAG PUBLIC CIXP SRF9930443 |", "circuits": [], "snmp-index": 708}, {"router": "mx1.gen.ch.geant.net", "name": "ae18.2001", "bundle": [], "bundle-parents": ["xe-2/2/0"], "description": "SRV_IAS PUBLIC CIXP #IX_Peerings_in_CIXP |", "circuits": [{"id": 663212, "name": "IX_PEERINGS_IN_CIXP", "type": "IP PEERING - NON R&E (PUBLIC)", "status": "operational"}], "snmp-index": 864}, {"router": "mx1.gen.ch.geant.net", "name": "ae20.100", "bundle": [], "bundle-parents": ["xe-2/0/3", "xe-2/1/1"], "description": "SRV_GLOBAL RE_INTERCONNECT NKN #CH-NKN | ASN9885 | ", "circuits": [{"id": 678060, "name": "CH-NKN", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 892}, {"router": "mx1.gen.ch.geant.net", "name": "ae20.111", "bundle": [], "bundle-parents": ["xe-2/0/3", "xe-2/1/1"], "description": "SRV_L3VPN RE_INTERCONNECT NKN #NKN-GEN-LHCONE | ASN9885", "circuits": [{"id": 678079, "name": "NKN-GEN-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 897}, {"router": "mx1.gen.ch.geant.net", "name": "ae21", "bundle": [], "bundle-parents": ["et-11/0/2"], "description": "LAG CUSTOMER CERN SRF20066 |", "circuits": [], "snmp-index": 711}, {"router": "mx1.gen.ch.geant.net", "name": "ae21.110", "bundle": [], "bundle-parents": ["et-11/0/2"], "description": "SRV_L3VPN CUSTOMER CERN #CERN-GEN-LHCONE-2  | ASN513 | CERNLIGHT", "circuits": [{"id": 701612, "name": "CERN-GEN-LHCONE-2", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1243}, {"router": "mx1.gen.ch.geant.net", "name": "ae21.496", "bundle": [], "bundle-parents": ["et-11/0/2"], "description": "SRV_GCS CUSTOMER CERN | #CERN_GVA_ExpressRoute_Vlan496_Backup | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706764, "name": "CERN_GVA_EXPRESSROUTE_VLAN496_BACKUP", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 1265}, {"router": "mx1.gen.ch.geant.net", "name": "ae21.497", "bundle": [], "bundle-parents": ["et-11/0/2"], "description": "SRV_GCS CUSTOMER CERN | #CERN_CERN_ExpressRoute_VLAN497_Backup | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", "circuits": [{"id": 706486, "name": "CERN-CERN-EXPRESSROUTE-VLAN497", "type": "EXPRESS ROUTE", "status": "operational"}], "snmp-index": 633}, {"router": "mx1.gen.ch.geant.net", "name": "ae22.201", "bundle": [], "bundle-parents": ["et-11/0/5"], "description": "SRV_GLOBAL CUSTOMER CERN #CERN-AP1-EXT2 | ASN513 |", "circuits": [{"id": 701593, "name": "CERN-AP1-EXT2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1237}, {"router": "mx1.gen.ch.geant.net", "name": "ae22.334", "bundle": [], "bundle-parents": ["et-11/0/5"], "description": "SRV_IAS CUSTOMER CERN #CERN_AP_EXT2-IAS IASPS | ASN513", "circuits": [{"id": 701592, "name": "CERN_AP_EXT2-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 1238}, {"router": "mx1.gen.ch.geant.net", "name": "ae22.668", "bundle": [], "bundle-parents": ["et-11/0/5"], "description": "SRV_CLS CUSTOMER CERN #CERN_AP_ExT2_CLS | ASN513 |", "circuits": [{"id": 701590, "name": "CERN_AP_EXT2_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1239}, {"router": "mx1.gen.ch.geant.net", "name": "ae23", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "LAG CUSTOMER SWITCH AP1 SRF19136 |", "circuits": [], "snmp-index": 713}, {"router": "mx1.gen.ch.geant.net", "name": "ae23.16", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER GTS SWITCH #gen-ham_SCION_SWITCH-GTS_19024 |", "circuits": [{"id": 706485, "name": "GEN-HAM_SCION_SWITCH-GTS_19024", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1268}, {"router": "mx1.gen.ch.geant.net", "name": "ae23.70", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER SWITCH INTERNET2 #gen-lon_MISC_SWITCH-INTERNET2_18045 |", "circuits": [{"id": 709298, "name": "GEN-LON_MISC_SWITCH-INTERNET2_18045", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1269}, {"router": "mx1.gen.ch.geant.net", "name": "ae23.80", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER SWITCH INTERNET2 #gen-par_MISC_SWITCH-INTERNET2_18046 |", "circuits": [{"id": 705479, "name": "GEN-PAR_MISC_SWITCH-INTERNET2_18046", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1270}, {"router": "mx1.gen.ch.geant.net", "name": "ae23.100", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "SRV_GLOBAL CUSTOMER SWITCH #SWITCH-AP1 | ASN559 |", "circuits": [{"id": 663078, "name": "SWITCH-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1271}, {"router": "mx1.gen.ch.geant.net", "name": "ae23.310", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER SWITCH JISC #gen-lon_SYNGENTA_SWITCH-JANET_17041 ", "circuits": [{"id": 705461, "name": "GEN-LON_SYNGENTA_SWITCH-JANET_17041", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1272}, {"router": "mx1.gen.ch.geant.net", "name": "ae23.333", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "SRV_IAS CUSTOMER SWITCH #SWITCH_AP1_IAS IASPS | ASN559 ", "circuits": [{"id": 663229, "name": "SWITCH_AP1_IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 1273}, {"router": "mx1.gen.ch.geant.net", "name": "ae23.350", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER SWITCH INTERNET2 #gen-par_SYNGENTA_SWITCH-INTERNET2_17045 |", "circuits": [{"id": 705424, "name": "GEN-PAR_SYNGENTA_SWITCH-INTERNET2_17045", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1274}, {"router": "mx1.gen.ch.geant.net", "name": "ae23.559", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER SWITCH GEANT #fra-gen-SWITCH-RARE-21035 |", "circuits": [{"id": 709921, "name": "FRA-GEN-SWITCH-RARE-21035", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 641}, {"router": "mx1.gen.ch.geant.net", "name": "ae23.600", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER SWITCH AMS-IX #AMS-GEN-NREN-IX-AMSIX-SWITCH-18008 |", "circuits": [{"id": 705456, "name": "AMS-GEN-NREN-IX-AMSIX-SWITCH-18008", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1275}, {"router": "mx1.gen.ch.geant.net", "name": "ae23.667", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "SRV_CLS PRIVATE EXOSCALE #CH-EXOSCALE_CLS|ASN61098 | ", "circuits": [{"id": 663057, "name": "CH-EXOSCALE_CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 1276}, {"router": "mx1.gen.ch.geant.net", "name": "irb.999", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-gen-ch-mgmt-vrf-vlan999 |", "circuits": [], "snmp-index": 678}, {"router": "mx1.gen.ch.geant.net", "name": "lt-0/0/0.21", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF16031 | VPN-Proxy to GEANT PE for BGP-LU peering", "circuits": [], "snmp-index": 1210}, {"router": "mx1.gen.ch.geant.net", "name": "lt-0/0/0.31", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF16031 | VPN-Proxy to GEANT PE for IBGP", "circuits": [], "snmp-index": 1211}, {"router": "mx1.gen.ch.geant.net", "name": "ae23.360", "bundle": [], "bundle-parents": ["et-1/0/5", "et-5/0/2"], "description": "SRV_MDVPN CUSTOMER SWITCH #SWITCH-GN-PRACE-VPN-Proxy-Geneva-L3VPN | VPN-Proxy to NREN CE", "circuits": [], "snmp-index": 1278}, {"router": "rt2.tal.ee.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 580}, {"router": "rt2.tal.ee.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-tal-ee-rt2-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710688, "name": "BGPPEERING-TAL-EE-RT2-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 588}, {"router": "rt2.tal.ee.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #TAL-IAS-RE-Peering_rt2 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 592}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/0/0:0", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | HAM-TAL #3 NORDUNET ID: NU-S000644, GLOBALCONNECT ID: F31476-xxxxxxx", "circuits": [], "snmp-index": 526}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/0/0:1", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | HAM-TAL #4 NORDUNET ID: NU-S000643, GLOBALCONNECT ID: F31476-1089157", "circuits": [], "snmp-index": 527}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/0/0:2", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9929573 | HAM-TAL #1 NORDUNET ID: NU-S000358, GLOBALCONNECT ID: F31476-1061143", "circuits": [], "snmp-index": 528}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/0/0:3", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9929575 | HAM-TAL #2 NORDUNET ID: NU-S000359, GLOBALCONNECT ID: F31476-1061144", "circuits": [], "snmp-index": 529}, {"router": "rt2.tal.ee.geant.net", "name": "et-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 599}, {"router": "rt2.tal.ee.geant.net", "name": "et-0/0/2", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 |", "circuits": [], "snmp-index": 600}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/1/0", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER EENET P_AE10 SRF9940305 | EENET - member of ae10", "circuits": [], "snmp-index": 558}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/1/1", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER EENET P_ae10 SRF9912869 | EENET - member of ae10", "circuits": [], "snmp-index": 559}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/1/2", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER EENET P_ae10 SRF19018 | EENET - member of ae10", "circuits": [], "snmp-index": 560}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/1/3", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY CUSTOMER EENET P_AE10 SRF-19018 | EENET - member of AE10", "circuits": [], "snmp-index": 561}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 562}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 563}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/1/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 564}, {"router": "rt2.tal.ee.geant.net", "name": "xe-0/1/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 565}, {"router": "rt2.tal.ee.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-0/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | tal-tal", "circuits": [], "snmp-index": 585}, {"router": "rt2.tal.ee.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-0/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RT1-TAL_RT2-TAL_IPTRUNK | TAL-TAL |  ", "circuits": [{"id": 708751, "name": "RT1-TAL_RT2-TAL_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 590}, {"router": "rt2.tal.ee.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | ham-tal", "circuits": [], "snmp-index": 602}, {"router": "rt2.tal.ee.geant.net", "name": "ae5.0", "bundle": [], "bundle-parents": ["xe-0/0/0:0", "xe-0/0/0:1", "xe-0/0/0:2", "xe-0/0/0:3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #HAM_TAL_IPTRUNK | HAM-TAL |  ", "circuits": [{"id": 708730, "name": "HAM_TAL_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 620}, {"router": "rt2.tal.ee.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-0/1/2", "xe-0/1/3"], "description": "LAG CUSTOMER EENET SRF9940433 | EENET AP LAG", "circuits": [], "snmp-index": 603}, {"router": "rt2.tal.ee.geant.net", "name": "ae10.100", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-0/1/2", "xe-0/1/3"], "description": "SRV_GLOBAL CUSTOMER EENET #EENET-AP1 | ASN3221 | EEnet ", "circuits": [{"id": 661933, "name": "EENET-AP1", "type": "GEANT IP", "status": "operational"}], "snmp-index": 621}, {"router": "rt2.tal.ee.geant.net", "name": "ae10.111", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-0/1/2", "xe-0/1/3"], "description": "SRV_L3VPN CUSTOMER EENET #EENET-AP1-LHCONE | ASN3221", "circuits": [{"id": 661994, "name": "EENET-AP1-LHCONE", "type": "L3-VPN", "status": "operational"}], "snmp-index": 622}, {"router": "rt2.tal.ee.geant.net", "name": "ae10.200", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-0/1/2", "xe-0/1/3"], "description": "SRV_IAS CUSTOMER EENET #EENET-AP1-IAS IASPS | ASN3221 ", "circuits": [{"id": 660447, "name": "EENET-AP1-IAS", "type": "GEANT PEERING", "status": "operational"}], "snmp-index": 623}, {"router": "rt2.tal.ee.geant.net", "name": "ae10.2112", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1", "xe-0/1/2", "xe-0/1/3"], "description": "SRV_L2CIRCUIT CUSTOMER EENet LAT #rig-tal-Genomics-LAT-EENet-21034 |", "circuits": [{"id": 709306, "name": "RIG-TAL-GENOMICS-LAT-EENET-21034", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 629}, {"router": "rt2.tal.ee.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 584}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | LON2 POP LAN sw1.lon2.uk g0/3", "circuits": [{"id": 661541, "name": "TAAS-CONTROL-LON-UK-VLAN260", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 517}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.11", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #EXFO_MANAGEMENT_VLAN11 | EXFO Management VLAN 11", "circuits": [{"id": 661966, "name": "EXFO_MANAGEMENT_VLAN11", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1131}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.21", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lon2-uk-idrac |perfSONAR iDRAC", "circuits": [{"id": 661895, "name": "PS-LON2-UK-IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 678}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lon2-uk-management |perfSONAR MGMT", "circuits": [{"id": 661735, "name": "PS-LON2-UK-MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 681}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.50", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #Dashboard-server-ams-vlan50 | DBOARD", "circuits": [{"id": 661562, "name": "DASHBOARD-SERVER-AMS-VLAN50", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 691}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.200", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON2_SEC_ESX_DEVICES_IDRAC |lon2-sec-esx20/21-devices-iDRAC CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20181031", "circuits": [{"id": 661169, "name": "LON2_SEC_ESX_DEVICES_IDRAC", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 726}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.250", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #vm-lon2-uk-idracs-250| NEW VM iDRACs", "circuits": [{"id": 661196, "name": "VM-LON2-UK-IDRACS-250", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 677}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.260", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #taas-control-lon-uk-vlan260 | TAAS GTS CONTROL", "circuits": [{"id": 661541, "name": "TAAS-CONTROL-LON-UK-VLAN260", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 836}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.301", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #Lon2_Groove_1| LON2 Groove 1", "circuits": [{"id": 660455, "name": "LON2_GROOVE_1", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1052}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.302", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #Lon2_Groove_1_Management| LON2 Groove 1 Direct Management", "circuits": [{"id": 661197, "name": "LON2_GROOVE_1_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1053}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.401", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #LON2_Groove_2 | LON2 Groove 2  ", "circuits": [{"id": 661268, "name": "LON2_GROOVE_2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1527}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.402", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #LON2_Groove_2_Management | LON2 Groove 2 Direct Management", "circuits": [{"id": 661170, "name": "LON2_GROOVE_2_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1528}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.505", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #ASREN_EDGE_DEVICE_VLAN505|ASREN edge-device-SSH CONTACT: matthew.dunn@geant.org IMPLEMENTED: 20190807", "circuits": [{"id": 660719, "name": "ASREN_EDGE_DEVICE_VLAN505", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1904}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/0.991", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE Access #LON2_Groove | LON2 Groove G30", "circuits": [{"id": 707224, "name": "LON2_GROOVE", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 617}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF0000001 | LON201-DTNX10-1 XCM 1", "circuits": [], "snmp-index": 518}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9933671 | PSMP OWAMP", "circuits": [], "snmp-index": 519}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/2.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon2-uk-owamp_fpc0 | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160417", "circuits": [{"id": 661417, "name": "PS-LON2-UK-OWAMP_FPC0", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1031}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/3", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER SINET SRF19045| Under Testing", "circuits": [], "snmp-index": 520}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/3.220", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON2-MISC-SINET-SINET-19045 |", "circuits": [{"id": 705933, "name": "AMS-LON2-MISC-SINET-SINET-19045", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1812}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS | QFX1 C0 MGMT", "circuits": [], "snmp-index": 521}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS FLOWMON SRF0000001 | FlowMon1 Collector Interface CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20160816", "circuits": [], "snmp-index": 522}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS | EX1 MGMT - ex1.lon2.uk.geant.net", "circuits": [], "snmp-index": 523}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access | To GTS EX P11", "circuits": [], "snmp-index": 524}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access | To GTS EX P12", "circuits": [], "snmp-index": 525}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/0/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS | QFX2 C0 MGMT", "circuits": [], "snmp-index": 526}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF0000001 | LON201-DTNX10-1 XCM 2", "circuits": [], "snmp-index": 527}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF0000001 | LON_CX_01 DCN", "circuits": [], "snmp-index": 528}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | OPENFLOW port for virtual switch OF control", "circuits": [], "snmp-index": 529}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | TAAS CONTROL - GTS.SW2 P19", "circuits": [], "snmp-index": 530}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/3.252", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS GTS #TAAS_GTS_GATE_LON2_UK | TAAS GTS GATE", "circuits": [{"id": 707065, "name": "TAAS_GTS_GATE_LON2_UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 593}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/3.260", "bundle": [], "bundle-parents": [], "description": "SRV_TAAS INFRASTRUCTURE GTS #TAAS_CONTROL_LONDON | TAAS CONTROL", "circuits": [{"id": 660429, "name": "TAAS_CONTROL_LONDON", "type": "GTS", "status": "operational"}], "snmp-index": 596}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS.SW2 P20 - VPLS", "circuits": [], "snmp-index": 531}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS.SW2 P09 - BMS", "circuits": [], "snmp-index": 532}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SINGAREN SRF9941819 | LON2_SingAREN_1G OOB", "circuits": [{"id": 708165, "name": "LON2-SINGAREN-OOB-LINK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 533}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/6.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SINGAREN #OOB_SINGAREN_LON2_UK | LON2_SingAREN_1G OOB", "circuits": [{"id": 708165, "name": "LON2-SINGAREN-OOB-LINK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1058}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to GTS CSF1a", "circuits": [], "snmp-index": 534}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | IDRAC CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180502", "circuits": [{"id": 708158, "name": "GTS_IDRAC_LON2_UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 535}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/8.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS GTS #GTS_IDRAC_LON2_UK | IDRAC CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180502", "circuits": [{"id": 708158, "name": "GTS_IDRAC_LON2_UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1174}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | SRV MGMT CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180502", "circuits": [{"id": 708241, "name": "GTS_MANAGEMENT_LON2_UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 536}, {"router": "mx1.lon2.uk.geant.net", "name": "ge-0/1/9.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS GTS #GTS_MANAGEMENT_LON2_UK |SRV MGMT CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180502", "circuits": [{"id": 708241, "name": "GTS_MANAGEMENT_LON2_UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1175}, {"router": "mx1.lon2.uk.geant.net", "name": "et-1/0/0", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER JISC P_AE12 SRF9946185 | JISC AP2| JISC ID: 204115613", "circuits": [], "snmp-index": 748}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS CSF0 | GTS link to GTS CSF0", "circuits": [], "snmp-index": 1019}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/1", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE16 | QFX.LON2.UK xe-0/0/46", "circuits": [], "snmp-index": 1020}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS LAN | Trunk to EX1.lon2.uk", "circuits": [], "snmp-index": 1021}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2.11", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON_LON2_UK_MANAGEMENT | FlowMon1 Management + FanOut CONTACT: evangelos.spatharas@geant.org", "circuits": [{"id": 661935, "name": "FLOWMON_LON2_UK_MANAGEMENT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 979}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2.12", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #CORSA_MANAGEMENT_LON2_UK | MGMT interface for corsa", "circuits": [{"id": 661358, "name": "CORSA_MANAGEMENT_LON2_UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 980}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2.13", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX_LON2_REPORTING_SERVER | LON2 Infoblox Reporting Server", "circuits": [{"id": 661561, "name": "INFOBLOX_LON2_REPORTING_SERVER", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1182}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2.14", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DRACS_LON2_UK | LON2 DRACS", "circuits": [{"id": 661540, "name": "DRACS_LON2_UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1183}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2.17", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE CORPORATE #VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN17", "circuits": [], "snmp-index": 1847}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2.18", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE CORPORATE #VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN18", "circuits": [], "snmp-index": 1862}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2.19", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE CORPORATE #VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN19", "circuits": [], "snmp-index": 610}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2.940", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #XANTARO_SERVICE_ENGINE_RemoteKVM_Lon2_Vlan940", "circuits": [{"id": 661383, "name": "XANTARO_SERVICE_ENGINE_REMOTEKVM_LON2_VLAN940", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1818}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2.944", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #XANTARO_SERVICE_ENGINE_ETH0_Internal_Lon2_Vlan944", "circuits": [{"id": 661751, "name": "XANTARO_SERVICE_ENGINE_ETH0_INTERNAL_LON2_VLAN944", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1819}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2.946", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #XANTARO_SERVICE_ENGINE_ETH1_Netdevices_Lon2_Vlan946", "circuits": [{"id": 661612, "name": "XANTARO_SERVICE_ENGINE_ETH1_NETDEVICES_LON2_VLAN946", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1820}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/2.3007", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE  Access  #Infoblox_Trinzic805_Lon2_VLAN3007 | Infoblox Trinzic 805 - DNS", "circuits": [{"id": 679409, "name": "INFOBLOX_TRINZIC805_LON2_VLAN3007", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 797}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/3", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE16 | QFX.LON2.UK xe-1/0/46", "circuits": [], "snmp-index": 1022}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 4 (BMS)", "circuits": [], "snmp-index": 1023}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER5", "circuits": [], "snmp-index": 1024}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/5.14", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-61acf5edd1", "circuits": [], "snmp-index": 582}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/5.15", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-7b2e4b6aee", "circuits": [{"id": 707008, "name": "AM-9F8FC5C292", "type": "GTS", "status": "operational"}], "snmp-index": 587}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/5.16", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-ee0827aec1", "circuits": [{"id": 706978, "name": "AM-F50907E514", "type": "GTS", "status": "operational"}], "snmp-index": 588}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/5.17", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-c90d7ed86c", "circuits": [{"id": 707197, "name": "LO-0309673A4D", "type": "GTS", "status": "operational"}], "snmp-index": 653}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 6", "circuits": [], "snmp-index": 1025}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/6.11", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-4fb0d350dd", "circuits": [], "snmp-index": 575}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/6.14", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-3d2d3bd034", "circuits": [{"id": 711465, "name": "AM-BA501B13ED", "type": "GTS", "status": "operational"}], "snmp-index": 762}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/6.15", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-94fd4e8bdc", "circuits": [], "snmp-index": 561}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/6.16", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-0e9fafc157", "circuits": [{"id": 711464, "name": "AM-5C555D9A03", "type": "GTS", "status": "operational"}], "snmp-index": 568}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/6.17", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-0309673a4d", "circuits": [{"id": 707197, "name": "LO-0309673A4D", "type": "GTS", "status": "operational"}], "snmp-index": 562}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/6.19", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-7d76f04a24", "circuits": [{"id": 706602, "name": "AM-519A7CA586", "type": "GTS", "status": "operational"}], "snmp-index": 585}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/6.20", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-e90d4e3024", "circuits": [{"id": 706215, "name": "AM-5D692D60B3", "type": "GTS", "status": "operational"}], "snmp-index": 589}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/6.21", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-31e6d774bf", "circuits": [{"id": 706426, "name": "AM-FB454D7C6F", "type": "GTS", "status": "operational"}], "snmp-index": 590}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/6.22", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-2be83adea5", "circuits": [{"id": 706567, "name": "AM-260BCD4484", "type": "GTS", "status": "operational"}], "snmp-index": 601}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/6.23", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-ab961dba33", "circuits": [{"id": 707200, "name": "LO-AB961DBA33", "type": "GTS", "status": "operational"}], "snmp-index": 611}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 7 (BMS)", "circuits": [], "snmp-index": 1026}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/7.0", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-2283064c2e", "circuits": [{"id": 707233, "name": "PA-B267CA1B21", "type": "GTS", "status": "operational"}], "snmp-index": 586}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/8", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 8", "circuits": [], "snmp-index": 1027}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-1/2/9", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | Previously PSMP NETMON, not in use", "circuits": [], "snmp-index": 1028}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/0/0", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER SINET SRF19044 |Under Testing", "circuits": [], "snmp-index": 1565}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/0/0.210", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON2-MISC-SINET-SINET-19044 |", "circuits": [{"id": 705903, "name": "AMS-LON2-MISC-SINET-SINET-19044", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1814}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1566}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/0/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CSF1.PRM 1", "circuits": [], "snmp-index": 1572}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/0/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CSF1.PRM 2", "circuits": [], "snmp-index": 1567}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1568}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/0/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE WP6T3 SRF20063| Formally JRA4T2 Server", "circuits": [], "snmp-index": 1569}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/0/5.13", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #lon2_pra-WP6-GTS_20063 |", "circuits": [{"id": 678788, "name": "HAM_LON2-WP6-GTS_20063", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 792}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/0/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE WP6T3 SRF20064| Formally JRA4T2 Server", "circuits": [], "snmp-index": 1570}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/0/6.12", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #ham_lon2-WP6-GTS_20064 |", "circuits": [{"id": 678790, "name": "HAM_LON2-WP6-GTS_20064", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 794}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/0/7", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE16 | QFX.LON2.UK xe-0/0/47", "circuits": [], "snmp-index": 1571}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/0", "bundle": [], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ASREN SRF19049|", "circuits": [], "snmp-index": 1573}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/0.46", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER ASREN ASREN #lon-lon2_GEANTOpen_ASREN-ASREN_190491 |", "circuits": [{"id": 707023, "name": "LON-LON2_GEANTOPEN_ASREN-ASREN_190491", "type": "GEANT OPEN CROSS CONNECT", "status": "operational"}], "snmp-index": 591}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/1", "bundle": ["ae17"], "bundle-parents": [], "description": "PHY RE_INTERCONNECT ASREN P_AE17 SRF9943959|", "circuits": [], "snmp-index": 1574}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/2", "bundle": ["ae16"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE LAN P_AE16 | QFX.LON2.UK xe-1/0/47", "circuits": [], "snmp-index": 1576}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9933669 | PSMP BWCTL", "circuits": [{"id": 708208, "name": "PS-LON2-UK-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1578}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/3.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon2-uk-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160417", "circuits": [{"id": 708208, "name": "PS-LON2-UK-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1704}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Reserved for SINGAREN GeO", "circuits": [], "snmp-index": 1579}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | JRA MX to CORSA P4", "circuits": [{"id": 661206, "name": "SDN-BOD_VLAN502", "type": "GEANT PLUS", "status": "operational"}, {"id": 661432, "name": "SDN-BOD_VLAN501", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1580}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/5.501", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE SDN-BOD #SDN-BOD_vlan501 | VLAN 501 for symposium SDN demo", "circuits": [{"id": 661432, "name": "SDN-BOD_VLAN501", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1706}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/5.502", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE SDN-BOD #SDN-BOD_vlan502 | VLAN 502 for symposium SDN demo", "circuits": [{"id": 661206, "name": "SDN-BOD_VLAN502", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1707}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | JRA MX to CORSA P6", "circuits": [], "snmp-index": 1575}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/6.1003", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE JRA1 #JRA1_SDN_BOD_PILOT_BR53 | SDN-BOD PILOT BR53", "circuits": [{"id": 661658, "name": "JRA1_SDN_BOD_PILOT_BR53", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1709}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | JRA MX to CORSA P5", "circuits": [{"id": 661168, "name": "SDN-BOD-BR53-OF-11", "type": "GEANT PLUS", "status": "operational"}, {"id": 661233, "name": "SDN-BOD-BR53-OF-8", "type": "GEANT PLUS", "status": "operational"}, {"id": 661288, "name": "SDN-BOD-BR53-OF-12", "type": "GEANT PLUS", "status": "operational"}, {"id": 661543, "name": "SDN-BOD-BR53-OF-7", "type": "GEANT PLUS", "status": "operational"}, {"id": 661560, "name": "SDN-BOD-BR53-OF-10", "type": "GEANT PLUS", "status": "operational"}, {"id": 661639, "name": "SDN-BOD-BR53-OF-2", "type": "GEANT PLUS", "status": "operational"}, {"id": 661903, "name": "SDN-BOD-BR53-OF-1_LON2", "type": "GEANT PLUS", "status": "operational"}, {"id": 661932, "name": "SDN-BOD-BR53-OF-9", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1577}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/7.922", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-1_lon2 ", "circuits": [{"id": 661903, "name": "SDN-BOD-BR53-OF-1_LON2", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1711}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/7.923", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-7", "circuits": [{"id": 661543, "name": "SDN-BOD-BR53-OF-7", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1712}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/7.924", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-8  ", "circuits": [{"id": 661233, "name": "SDN-BOD-BR53-OF-8", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1713}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/7.925", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-9  ", "circuits": [{"id": 661932, "name": "SDN-BOD-BR53-OF-9", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1714}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/7.932", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-2  ", "circuits": [{"id": 661639, "name": "SDN-BOD-BR53-OF-2", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1715}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/7.933", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-10  ", "circuits": [{"id": 661560, "name": "SDN-BOD-BR53-OF-10", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1716}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/7.934", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-11  ", "circuits": [{"id": 661168, "name": "SDN-BOD-BR53-OF-11", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1717}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/1/7.935", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-12  ", "circuits": [{"id": 661288, "name": "SDN-BOD-BR53-OF-12", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 1718}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P7", "circuits": [], "snmp-index": 1588}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1581}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE 10GGBS | EXFO-10G-GBS-TEST - EXFO Tester data port", "circuits": [], "snmp-index": 1582}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/3", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE 10GGBS | EXFO-10G-GBS-TEST - EXFO Tester hairpin to DTNX", "circuits": [], "snmp-index": 1583}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/4", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 0", "circuits": [], "snmp-index": 1584}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/5", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 1", "circuits": [], "snmp-index": 1585}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/6", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 2", "circuits": [], "snmp-index": 1586}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/7", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 3", "circuits": [], "snmp-index": 1587}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/7.11", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-f3ba13a1f9", "circuits": [], "snmp-index": 573}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/7.13", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-d87c20e924", "circuits": [{"id": 706608, "name": "HA-D08CD51E3B", "type": "GTS", "status": "operational"}], "snmp-index": 580}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/7.14", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-a5fa54d4fa", "circuits": [{"id": 707033, "name": "HA-31A7FBEA91", "type": "GTS", "status": "operational"}], "snmp-index": 579}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/7.15", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-61acf5edd1", "circuits": [], "snmp-index": 583}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/7.16", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-f3ba13a1f9", "circuits": [], "snmp-index": 581}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/7.17", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-cd9d85129a", "circuits": [{"id": 707069, "name": "HA-C5E134B19A", "type": "GTS", "status": "operational"}], "snmp-index": 578}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/7.18", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-15bb6f2fda", "circuits": [{"id": 706982, "name": "HA-4E9458D1A1", "type": "GTS", "status": "operational"}], "snmp-index": 584}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/7.19", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-4fb0d350dd", "circuits": [], "snmp-index": 576}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/2/7.20", "bundle": [], "bundle-parents": [], "description": "GTS_link|LO-94fd4e8bdc", "circuits": [], "snmp-index": 577}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF SRF0000001 | uat-psmp.lon2.uk.geant.net MGMT", "circuits": [{"id": 708222, "name": "PSMP_MANAGEMENT_LON2_UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1589}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PSMP_MANAGEMENT_LON2_UK | uat-psmp.lon2.uk.geant.net MGMT", "circuits": [{"id": 708222, "name": "PSMP_MANAGEMENT_LON2_UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 670}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | uat-psmp.lon2.uk.geant.net BWCTL", "circuits": [{"id": 708923, "name": "UAT-PS-LON2-UK-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1590}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/1.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #uat-ps-lon2-uk-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20200225", "circuits": [{"id": 708923, "name": "UAT-PS-LON2-UK-BWCTL", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 671}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/2", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR  SRF0000001 | uat-psmp.lon2.uk.geant.net OWAMP", "circuits": [], "snmp-index": 1591}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/2.22", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon2-uk-owamp_fpc2 | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20200501", "circuits": [{"id": 677828, "name": "PS-LON2-UK-OWAMP_FPC2", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 766}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/2.904", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #lon-lon2_MISC_GEANT-INTERNET2_9940525 |", "circuits": [{"id": 709300, "name": "LON-LON2_MISC_GEANT-INTERNET2_9940525", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 785}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1592}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1593}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1594}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1595}, {"router": "mx1.lon2.uk.geant.net", "name": "xe-2/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1596}, {"router": "mx1.lon2.uk.geant.net", "name": "et-5/0/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 747}, {"router": "mx1.lon2.uk.geant.net", "name": "et-7/0/2", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER JISC P_AE12 SRF9926857 | JISC AP2 | JISC ID: TCG-XC-005460860", "circuits": [], "snmp-index": 1645}, {"router": "mx1.lon2.uk.geant.net", "name": "et-7/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1646}, {"router": "mx1.lon2.uk.geant.net", "name": "gr-7/1/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS #FORTIGATE_TUNNEL_TO_CH_LON2_UK| Tunnel to Fortigate CH", "circuits": [], "snmp-index": 798}, {"router": "mx1.lon2.uk.geant.net", "name": "lt-7/1/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", "circuits": [], "snmp-index": 1855}, {"router": "mx1.lon2.uk.geant.net", "name": "lt-7/1/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-lon2-uk-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710672, "name": "BGPPEERING-LON2-UK-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1858}, {"router": "mx1.lon2.uk.geant.net", "name": "lt-7/1/0.17", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS CORPORATE #VRF_CONNECTION_LON2_UK_VLAN17 | L2Circuit into VRF (R&E Side)", "circuits": [{"id": 710697, "name": "VRF_CONNECTION_LON2_UK_VLAN17", "type": "SERVER LINK", "status": "operational"}, {"id": 663022, "name": "CAM-OFFICE-TO-AMS-OFFICE-L2CIRCUIT", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 1902}, {"router": "mx1.lon2.uk.geant.net", "name": "lt-7/1/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #LON2-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 1859}, {"router": "mx1.lon2.uk.geant.net", "name": "lt-7/1/0.71", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS CORPORATE #VRF_CONNECTION_LON2_UK_VLAN71 | L2Circuit into VRF (VRF Side)", "circuits": [{"id": 710653, "name": "VRF_CONNECTION_LON2_UK_VLAN71", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1903}, {"router": "mx1.lon2.uk.geant.net", "name": "et-7/1/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | SUSPECTED FAULTY", "circuits": [], "snmp-index": 1647}, {"router": "mx1.lon2.uk.geant.net", "name": "et-7/1/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 1648}, {"router": "mx1.lon2.uk.geant.net", "name": "et-9/0/2", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 SRF9937943 | dub2-lon2 LEVEL3 ID:440233726", "circuits": [], "snmp-index": 1532}, {"router": "mx1.lon2.uk.geant.net", "name": "et-9/0/5", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | Coriant G30 link| ", "circuits": [], "snmp-index": 1533}, {"router": "mx1.lon2.uk.geant.net", "name": "et-9/1/2", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | Coriant G30 link| ", "circuits": [], "snmp-index": 1534}, {"router": "mx1.lon2.uk.geant.net", "name": "et-9/1/5", "bundle": ["ae5"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 SRF0000001 | Coriant G30 link | ", "circuits": [], "snmp-index": 1535}, {"router": "mx1.lon2.uk.geant.net", "name": "et-10/0/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE | Reserved forJRA4T2 Server 100Gb", "circuits": [], "snmp-index": 1154}, {"router": "mx1.lon2.uk.geant.net", "name": "et-10/0/5", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE6 SRF0000001 | Coriant G30 link 1", "circuits": [], "snmp-index": 1152}, {"router": "mx1.lon2.uk.geant.net", "name": "et-10/1/2", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE6 SRF0000001 | Coriant G30 link 2", "circuits": [], "snmp-index": 1159}, {"router": "mx1.lon2.uk.geant.net", "name": "et-10/1/5", "bundle": ["ae6"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE6 SRF0000001 | Coriant G30 link 3", "circuits": [], "snmp-index": 1160}, {"router": "mx1.lon2.uk.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["et-9/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE DUB2 SRF9942043 | dub2-lon2", "circuits": [], "snmp-index": 620}, {"router": "mx1.lon2.uk.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["et-9/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #DUB2-LON2-IPTRUNK | DUB2-LON2 |  ", "circuits": [{"id": 709012, "name": "DUB2-LON2-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1137}, {"router": "mx1.lon2.uk.geant.net", "name": "ae5", "bundle": [], "bundle-parents": ["et-9/0/5", "et-9/1/2", "et-9/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE AMS SRF0000001 | lon2-par | Coriant G30 100G |", "circuits": [], "snmp-index": 622}, {"router": "mx1.lon2.uk.geant.net", "name": "ae5.0", "bundle": [], "bundle-parents": ["et-9/0/5", "et-9/1/2", "et-9/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON2_PAR_IPTRUNK | LON2-PAR |Coriant G30 100G", "circuits": [{"id": 708706, "name": "LON2_PAR_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1539}, {"router": "mx1.lon2.uk.geant.net", "name": "ae6", "bundle": [], "bundle-parents": ["et-10/0/5", "et-10/1/2", "et-10/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE LON SRF0000001 | lon-lon2 | Coriant G30 300G", "circuits": [], "snmp-index": 623}, {"router": "mx1.lon2.uk.geant.net", "name": "ae6.0", "bundle": [], "bundle-parents": ["et-10/0/5", "et-10/1/2", "et-10/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON_LON2_IPTRUNK | LON-LON2 |Coriant G30 300G", "circuits": [{"id": 708777, "name": "LON_LON2_IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 1181}, {"router": "mx1.lon2.uk.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["et-1/0/0", "et-7/0/2"], "description": "LAG CUSTOMER JISC SRF9926857 |", "circuits": [], "snmp-index": 629}, {"router": "mx1.lon2.uk.geant.net", "name": "ae12.0", "bundle": [], "bundle-parents": ["et-1/0/0", "et-7/0/2"], "description": "SRV_GLOBAL CUSTOMER JISC #JISC-AP2 | ASN786 |", "circuits": [{"id": 660631, "name": "JISC-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 714}, {"router": "mx1.lon2.uk.geant.net", "name": "ae16", "bundle": [], "bundle-parents": ["xe-1/2/1", "xe-1/2/3", "xe-2/0/7", "xe-2/1/2"], "description": "LAG CUSTOMER GEANT SRF0000000 | GEANT-IT", "circuits": [], "snmp-index": 633}, {"router": "mx1.lon2.uk.geant.net", "name": "ae16.100", "bundle": [], "bundle-parents": ["xe-1/2/1", "xe-1/2/3", "xe-2/0/7", "xe-2/1/2"], "description": "SRV_GLOBAL CUSTOMER GEANT #GEANT_Slough_Access | Fortigate WAN GEANT-IT", "circuits": [{"id": 661315, "name": "GEANT_SLOUGH_ACCESS", "type": "GEANT IP", "status": "operational"}], "snmp-index": 1037}, {"router": "mx1.lon2.uk.geant.net", "name": "ae16.101", "bundle": [], "bundle-parents": ["xe-1/2/1", "xe-1/2/3", "xe-2/0/7", "xe-2/1/2"], "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #LON2 to AMS-Office (for eduVPN) L2Circuit ", "circuits": [{"id": 705901, "name": "AMS-OFFICE-TO-LON2-(FOR-EDUVPN)-L2CIRCUIT", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 563}, {"router": "mx1.lon2.uk.geant.net", "name": "ae16.300", "bundle": [], "bundle-parents": ["xe-1/2/1", "xe-1/2/3", "xe-2/0/7", "xe-2/1/2"], "description": "SRV_L3VPN CUSTOMER GEANT-IT #FIREWALL_ACCESS_INTERNAL_LON2_UK | Firewall Access for Internal", "circuits": [{"id": 661549, "name": "FIREWALL_ACCESS_INTERNAL_LON2_UK", "type": "L3-VPN", "status": "operational"}], "snmp-index": 1161}, {"router": "mx1.lon2.uk.geant.net", "name": "ae16.2001", "bundle": [], "bundle-parents": ["xe-1/2/1", "xe-1/2/3", "xe-2/0/7", "xe-2/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #ESXI_Management_Lon2 | ESXI MANAGEMENT", "circuits": [{"id": 661564, "name": "ESXI_MANAGEMENT_LON2", "type": "POP LAN LINK", "status": "operational"}], "snmp-index": 1773}, {"router": "mx1.lon2.uk.geant.net", "name": "ae17", "bundle": [], "bundle-parents": ["xe-2/1/1"], "description": "LAG RE_INTERCONNECT ASREN SRF9929569 |", "circuits": [], "snmp-index": 634}, {"router": "mx1.lon2.uk.geant.net", "name": "ae17.333", "bundle": [], "bundle-parents": ["xe-2/1/1"], "description": "SRV_IAS CUSTOMER ASREN #UK_ASREN_IAS IASGWS | ASN199354 |", "circuits": [{"id": 661220, "name": "UK_ASREN_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 607}, {"router": "mx1.lon2.uk.geant.net", "name": "ae17.500", "bundle": [], "bundle-parents": ["xe-2/1/1"], "description": "SRV_GLOBAL RE_INTERCONNECT ASREN #UK_ASREN | ASN199354 | ", "circuits": [{"id": 661959, "name": "UK_ASREN", "type": "IP PEERING - R&E", "status": "operational"}], "snmp-index": 608}, {"router": "mx1.lon2.uk.geant.net", "name": "irb.252", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS GTS #TAAS_GTS_GATE_LON2_UK_LOGICAL_INTERFACE | TAAS GTS GATE", "circuits": [{"id": 707065, "name": "TAAS_GTS_GATE_LON2_UK", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 602}, {"router": "mx1.lon2.uk.geant.net", "name": "irb.260", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE ACCESS TAAS GTS #TAAS_CONTROL_LONDON | TAAS CONTROL", "circuits": [], "snmp-index": 1051}, {"router": "mx1.lon2.uk.geant.net", "name": "irb.998", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #qfx-management-dub-ie| EXFO management", "circuits": [], "snmp-index": 960}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-1/0/0", "bundle": ["ae12"], "bundle-parents": [], "description": "PHY CUSTOMER CYNET P_AE12 SRF9948497 | Bezeq ID: IPLC-18-8319", "circuits": [], "snmp-index": 568}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-1/0/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 569}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-1/1/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 571}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-1/1/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 570}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/2/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 526}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/2/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 527}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/2/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 528}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/2/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 529}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/2/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 530}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/2/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 531}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/2/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 532}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/2/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 533}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/2/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 534}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/2/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 535}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/3/0", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 536}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/3/1", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 537}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/3/2", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 538}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/3/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 539}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/3/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 540}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/3/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 541}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/3/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 542}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/3/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 543}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/3/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 544}, {"router": "mx1.ath2.gr.geant.net", "name": "ge-1/3/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 545}, {"router": "mx1.ath2.gr.geant.net", "name": "lt-2/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE", "circuits": [], "snmp-index": 641}, {"router": "mx1.ath2.gr.geant.net", "name": "lt-2/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-ath2-gr-RE_IAS| BGP Peering - RE Side", "circuits": [{"id": 710673, "name": "BGPPEERING-ATH2-GR-RE_IAS", "type": "SERVER LINK", "status": "operational"}], "snmp-index": 644}, {"router": "mx1.ath2.gr.geant.net", "name": "lt-2/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #ATH2-IAS-RE-Peering | BGP Peering - IAS Side", "circuits": [], "snmp-index": 645}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-2/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | ath2-vie OTEGlobe: 1-4XPLWDZ | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 623}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-2/0/1", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | ath2-vie OTEGlobe: 1-4XPLWF2 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 624}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-2/0/2", "bundle": [], "bundle-parents": [], "description": "PHY CUSTOMER CYNET SRF9943103 | GRNET ID: IDC-PRIV-5168 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 625}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-2/0/2.505", "bundle": [], "bundle-parents": [], "description": "SRV_L2CIRCUIT CUSTOMER CYNET GRNET #ath2-ath2_CYNET-GRNET_18063 | OVERSUB-RISK-MPC3E", "circuits": [{"id": 706046, "name": "ATH2-ATH2_CYNET-GRNET_18063", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 559}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-2/0/3", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF9943657 | ath2-vie OTEGlobe: 1-6RK0GB4 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 626}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-2/0/4", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER GRNET P_AE11 SRF9914707 | IDC-GRF-F11-PP1/P41,42 IDC-BBH-MMR12-PP8PA/CAS02/P17,18 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 627}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-2/0/5", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER GRNET P_AE11 SRF9914707 | IDC-GRF-F11-PP1/P43,44 IDC-BBH-MMR12-PP8PA/CAS02/P19,20 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 628}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-2/0/6", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | GRNET ATH-ATH2 DWDM_1 #CH47 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 629}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-2/0/7", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | GRNET ATH-ATH2 DWDM_1 #CH46 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 630}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-2/0/8", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF9943857 | GRNET ATH-ATH2 DWDM_1 #CH48 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 631}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-2/0/9", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER GRNET P_AE11 SRF18-058 | IDC-BBH-MMR13-PP9PA/CAS01/P1,2 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 632}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-3/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | ath2-vie OTE 1-94LW1M7 | OVERSUB-RISK-MPC3E", "circuits": [], "snmp-index": 591}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-3/0/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 | IDC-PRIV-5513 Ch45 EIE - TIS OCH ATH-ATH2 DWDM_4", "circuits": [], "snmp-index": 594}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-3/0/2", "bundle": ["ae11"], "bundle-parents": [], "description": "PHY CUSTOMER GRNET P_AE11 SRF21030 | IDC-PRIV-5514 Ch56 Koletti ", "circuits": [], "snmp-index": 595}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-3/0/3", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 596}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-3/0/4", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 597}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-3/0/5", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 598}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-3/0/6", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 599}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-3/0/7", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 600}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-3/0/8", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 601}, {"router": "mx1.ath2.gr.geant.net", "name": "xe-3/0/9", "bundle": [], "bundle-parents": [], "description": "PHY SPARE", "circuits": [], "snmp-index": 602}, {"router": "mx1.ath2.gr.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["xe-2/0/6", "xe-2/0/7", "xe-2/0/8", "xe-3/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE ATH SRF0000001 | ath-ath2", "circuits": [], "snmp-index": 573}, {"router": "mx1.ath2.gr.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["xe-2/0/6", "xe-2/0/7", "xe-2/0/8", "xe-3/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH-ATH2-IPTRUNK | ATH-ATH2 |", "circuits": [{"id": 708778, "name": "ATH-ATH2-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 575}, {"router": "mx1.ath2.gr.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["xe-2/0/0", "xe-2/0/1", "xe-2/0/3", "xe-3/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE VIE SRF0000001| ath2-vie", "circuits": [], "snmp-index": 576}, {"router": "mx1.ath2.gr.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["xe-2/0/0", "xe-2/0/1", "xe-2/0/3", "xe-3/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-VIE-IPTRUNK | ATH2-VIE |", "circuits": [{"id": 708735, "name": "ATH2-VIE-IPTRUNK", "type": "IP TRUNK", "status": "operational"}], "snmp-index": 577}, {"router": "mx1.ath2.gr.geant.net", "name": "ae11", "bundle": [], "bundle-parents": ["xe-2/0/4", "xe-2/0/5", "xe-2/0/9", "xe-3/0/2"], "description": "LAG CUSTOMER GRNET SRF9914707 |", "circuits": [], "snmp-index": 593}, {"router": "mx1.ath2.gr.geant.net", "name": "ae11.100", "bundle": [], "bundle-parents": ["xe-2/0/4", "xe-2/0/5", "xe-2/0/9", "xe-3/0/2"], "description": "SRV_GLOBAL CUSTOMER GRNET #GRNET-AP2 | ASN5408 | ", "circuits": [{"id": 663168, "name": "GRNET-AP2", "type": "GEANT IP", "status": "operational"}], "snmp-index": 611}, {"router": "mx1.ath2.gr.geant.net", "name": "ae11.333", "bundle": [], "bundle-parents": ["xe-2/0/4", "xe-2/0/5", "xe-2/0/9", "xe-3/0/2"], "description": "SRV_IAS CUSTOMER GRNET #GRNET-AP2-IAS IASGWS | ASN5408 | ", "circuits": [{"id": 662907, "name": "GRNET-AP2-IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 608}, {"router": "mx1.ath2.gr.geant.net", "name": "ae11.667", "bundle": [], "bundle-parents": ["xe-2/0/4", "xe-2/0/5", "xe-2/0/9", "xe-3/0/2"], "description": "SRV_CLS CUSTOMER GRNET #GRNET-AP2-CLS|ASN5408 | ", "circuits": [{"id": 663015, "name": "GRNET-AP2-CLS", "type": "GEANT CLOUD PEERING", "status": "operational"}], "snmp-index": 664}, {"router": "mx1.ath2.gr.geant.net", "name": "ae12", "bundle": [], "bundle-parents": ["xe-1/0/0"], "description": "LAG CUSTOMER CYNET SRF9943225|", "circuits": [], "snmp-index": 546}, {"router": "mx1.ath2.gr.geant.net", "name": "ae12.100", "bundle": [], "bundle-parents": ["xe-1/0/0"], "description": "SRV_GLOBAL CUSTOMER CYNET #CYNET-AP3 | ASN3268 |", "circuits": [{"id": 663102, "name": "CYNET_AP3", "type": "GEANT IP", "status": "operational"}], "snmp-index": 552}, {"router": "mx1.ath2.gr.geant.net", "name": "ae12.333", "bundle": [], "bundle-parents": ["xe-1/0/0"], "description": "SRV_IAS CUSTOMER CYNET #CYNET_AP3_IAS IASGWS | ASN3268 | ", "circuits": [{"id": 663198, "name": "CYNET_AP3_IAS", "type": "GWS - INDIRECT", "status": "operational"}], "snmp-index": 551}, {"router": "mx1.ath2.gr.geant.net", "name": "ae12.505", "bundle": [], "bundle-parents": ["xe-1/0/0"], "description": "SRV_L2CIRCUIT CUSTOMER CYNET GRNET #ath2-ath2_CYNET-GRNET_18063|", "circuits": [{"id": 706046, "name": "ATH2-ATH2_CYNET-GRNET_18063", "type": "GEANT PLUS", "status": "operational"}], "snmp-index": 557}, {"router": "mx1.ath2.gr.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 510}, {"router": "mx3.lab.office.geant.net", "name": "et-0/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | MX3-MX2", "circuits": [], "snmp-index": 542}, {"router": "mx3.lab.office.geant.net", "name": "gr-0/0/0.0", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL CUSTOMER PSNC SRF0000001 | Multicast only GRE tunnel to PSNC VM 1", "circuits": [], "snmp-index": 578}, {"router": "mx3.lab.office.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 534}, {"router": "mx3.lab.office.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", "circuits": [], "snmp-index": 535}, {"router": "mx3.lab.office.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 541}, {"router": "mx3.lab.office.geant.net", "name": "et-0/0/1", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MX3-MX4", "circuits": [], "snmp-index": 518}, {"router": "mx3.lab.office.geant.net", "name": "xe-0/1/0", "bundle": ["ae10"], "bundle-parents": [], "description": "To Lab MX80-2 - xe-0/0/0 part of ae10", "circuits": [], "snmp-index": 522}, {"router": "mx3.lab.office.geant.net", "name": "xe-0/1/1", "bundle": ["ae10"], "bundle-parents": [], "description": "To Lab MX80-2 - xe-0/0/1 part of ae10", "circuits": [], "snmp-index": 523}, {"router": "mx3.lab.office.geant.net", "name": "xe-0/1/2", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | MX3-MX2 | 10G", "circuits": [], "snmp-index": 524}, {"router": "mx3.lab.office.geant.net", "name": "xe-0/1/4", "bundle": [], "bundle-parents": [], "description": "SPARE", "circuits": [], "snmp-index": 526}, {"router": "mx3.lab.office.geant.net", "name": "xe-0/1/6", "bundle": ["ae31"], "bundle-parents": [], "description": "qfx1 0/0/10", "circuits": [], "snmp-index": 547}, {"router": "mx3.lab.office.geant.net", "name": "xe-0/1/7", "bundle": ["ae31"], "bundle-parents": [], "description": "qfx1 1/0/10", "circuits": [], "snmp-index": 548}, {"router": "mx3.lab.office.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-0/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx3-mx2", "circuits": [], "snmp-index": 588}, {"router": "mx3.lab.office.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-0/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx3-mx2", "circuits": [], "snmp-index": 590}, {"router": "mx3.lab.office.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-0/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx3-mx4", "circuits": [], "snmp-index": 591}, {"router": "mx3.lab.office.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-0/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx3-mx4", "circuits": [], "snmp-index": 593}, {"router": "mx3.lab.office.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["xe-0/1/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx3-mx2 | 10G", "circuits": [], "snmp-index": 601}, {"router": "mx3.lab.office.geant.net", "name": "ae4.0", "bundle": [], "bundle-parents": ["xe-0/1/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx3-mx2 | 10G", "circuits": [], "snmp-index": 603}, {"router": "mx3.lab.office.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "LAG to MX80-2 for NREN Services", "circuits": [], "snmp-index": 546}, {"router": "mx3.lab.office.geant.net", "name": "ae10.101", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "SRV_GLOBAL CUSTOMER DFN - R&E", "circuits": [], "snmp-index": 550}, {"router": "mx3.lab.office.geant.net", "name": "ae10.102", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "SRV_GLOBAL CUSTOMER REDIRIS - R&E", "circuits": [], "snmp-index": 551}, {"router": "mx3.lab.office.geant.net", "name": "ae10.106", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "SRV_GLOBAL CUSTOMER PSNC - R&E", "circuits": [], "snmp-index": 574}, {"router": "mx3.lab.office.geant.net", "name": "ae10.201", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "SRV_IAS CUSTOMER DFN SRF99????? | ASN680 |", "circuits": [], "snmp-index": 552}, {"router": "mx3.lab.office.geant.net", "name": "ae10.202", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "SRV_IAS CUSTOMER REDIRIS SRF9931707 | ASN766 |", "circuits": [], "snmp-index": 553}, {"router": "mx3.lab.office.geant.net", "name": "ae10.206", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "SRV_IAS CUSTOMER PIONIER SRF9931703 | ASN8501 |", "circuits": [], "snmp-index": 575}, {"router": "mx3.lab.office.geant.net", "name": "ae10.211", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "SRV_IAS CUSTOMER DFN SRF99????? | ASN680 |", "circuits": [], "snmp-index": 554}, {"router": "mx3.lab.office.geant.net", "name": "ae10.212", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "SRV_IAS CUSTOMER REDIRIS SRF9931707 | ASN766 | MAD", "circuits": [], "snmp-index": 555}, {"router": "mx3.lab.office.geant.net", "name": "ae10.301", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "SRV_LHCONE CUSTOMER DFN - LHCONE", "circuits": [], "snmp-index": 595}, {"router": "mx3.lab.office.geant.net", "name": "ae10.302", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "SRV_LHCONE CUSTOMER REDIRIS - LHCONE", "circuits": [], "snmp-index": 556}, {"router": "mx3.lab.office.geant.net", "name": "ae10.700", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "To Fake AS123 for IAS", "circuits": [], "snmp-index": 576}, {"router": "mx3.lab.office.geant.net", "name": "ae10.1000", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "SRV_L2CIRCUIT CUSTOMER PSNC | for TAT Test", "circuits": [], "snmp-index": 577}, {"router": "mx3.lab.office.geant.net", "name": "ae10.1012", "bundle": [], "bundle-parents": ["xe-0/1/0", "xe-0/1/1"], "description": "To MX80-1 - Test for BFD controlled static route - DFN", "circuits": [], "snmp-index": 557}, {"router": "mx3.lab.office.geant.net", "name": "ae31", "bundle": [], "bundle-parents": ["xe-0/1/6", "xe-0/1/7"], "description": "LAG | TRUNK | QFX1 | AE13 | MONITOR ", "circuits": [], "snmp-index": 629}, {"router": "mx3.lab.office.geant.net", "name": "ae31.2000", "bundle": [], "bundle-parents": ["xe-0/1/6", "xe-0/1/7"], "description": "VLAN 2000 | INET0 | QFX1", "circuits": [], "snmp-index": 633}, {"router": "mx3.lab.office.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 527}, {"router": "mx1.lab.office.geant.net", "name": "et-0/0/0", "bundle": [], "bundle-parents": [], "description": "Possibly faulty PIC slot, needs XTAC case - 14/08/19", "circuits": [], "snmp-index": 542}, {"router": "mx1.lab.office.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 550}, {"router": "mx1.lab.office.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", "circuits": [], "snmp-index": 554}, {"router": "mx1.lab.office.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 558}, {"router": "mx1.lab.office.geant.net", "name": "et-0/0/1", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | MX1-MX5", "circuits": [], "snmp-index": 543}, {"router": "mx1.lab.office.geant.net", "name": "et-0/0/2", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | MX1-MX2", "circuits": [], "snmp-index": 569}, {"router": "mx1.lab.office.geant.net", "name": "xe-0/1/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MX1-MX2", "circuits": [], "snmp-index": 534}, {"router": "mx1.lab.office.geant.net", "name": "xe-0/1/1", "bundle": ["ae3"], "bundle-parents": [], "description": "To R610-2 10G-nic-1 | trex-2 ens192f0, part of bond0", "circuits": [], "snmp-index": 535}, {"router": "mx1.lab.office.geant.net", "name": "xe-0/1/2", "bundle": [], "bundle-parents": [], "description": "To R610-2 10G-nic-2 | trex-2 ens192f1 (10.88.88.2/24)", "circuits": [], "snmp-index": 536}, {"router": "mx1.lab.office.geant.net", "name": "xe-0/1/3", "bundle": [], "bundle-parents": [], "description": "To EXFO Tester - 10G - 62.40.111.26", "circuits": [], "snmp-index": 537}, {"router": "mx1.lab.office.geant.net", "name": "xe-0/1/3.0", "bundle": [], "bundle-parents": [], "description": "logical unit EXFO - GOLD TEST", "circuits": [], "snmp-index": 571}, {"router": "mx1.lab.office.geant.net", "name": "xe-0/1/6", "bundle": ["ae31"], "bundle-parents": [], "description": "QFX1 0/0/8", "circuits": [], "snmp-index": 540}, {"router": "mx1.lab.office.geant.net", "name": "xe-0/1/7", "bundle": ["ae31"], "bundle-parents": [], "description": "QFX1 1/0/8", "circuits": [], "snmp-index": 541}, {"router": "mx1.lab.office.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["et-0/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx1-mx2", "circuits": [], "snmp-index": 565}, {"router": "mx1.lab.office.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["et-0/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx1-mx2 test", "circuits": [], "snmp-index": 567}, {"router": "mx1.lab.office.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-0/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx1-mx5", "circuits": [], "snmp-index": 563}, {"router": "mx1.lab.office.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-0/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx1-mx5", "circuits": [], "snmp-index": 566}, {"router": "mx1.lab.office.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx1-mx2", "circuits": [], "snmp-index": 524}, {"router": "mx1.lab.office.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["xe-0/1/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx1-mx2", "circuits": [], "snmp-index": 526}, {"router": "mx1.lab.office.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["xe-0/1/1"], "description": "To R610-2 | trex-2 bond0 (10.151.1.1/24)", "circuits": [], "snmp-index": 583}, {"router": "mx1.lab.office.geant.net", "name": "ae31", "bundle": [], "bundle-parents": ["xe-0/1/6", "xe-0/1/7"], "description": "LAG | TRUNK | QFX1 | AE11 | MONITOR ", "circuits": [], "snmp-index": 573}, {"router": "mx1.lab.office.geant.net", "name": "ae31.2000", "bundle": [], "bundle-parents": ["xe-0/1/6", "xe-0/1/7"], "description": "VLAN 2000 | INET0 | QFX1", "circuits": [], "snmp-index": 578}, {"router": "mx1.lab.office.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 553}, {"router": "mx1.lab.office.geant.net", "name": "xe-0/1/4.0", "bundle": [], "bundle-parents": [], "description": "Hello", "circuits": [], "snmp-index": 588}, {"router": "mx4.lab.office.geant.net", "name": "et-0/0/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MX4-MX3", "circuits": [], "snmp-index": 572}, {"router": "mx4.lab.office.geant.net", "name": "lt-0/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 550}, {"router": "mx4.lab.office.geant.net", "name": "lt-0/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", "circuits": [], "snmp-index": 554}, {"router": "mx4.lab.office.geant.net", "name": "lt-0/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 555}, {"router": "mx4.lab.office.geant.net", "name": "et-0/0/1", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | MX4-MX5", "circuits": [], "snmp-index": 518}, {"router": "mx4.lab.office.geant.net", "name": "xe-0/1/6", "bundle": ["ae31"], "bundle-parents": [], "description": "QFX1 0/0/11", "circuits": [], "snmp-index": 535}, {"router": "mx4.lab.office.geant.net", "name": "xe-0/1/7", "bundle": ["ae31"], "bundle-parents": [], "description": "QFX1 1/0/11", "circuits": [], "snmp-index": 536}, {"router": "mx4.lab.office.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["et-0/0/1"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx4-mx5", "circuits": [], "snmp-index": 562}, {"router": "mx4.lab.office.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["et-0/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx4-mx5", "circuits": [], "snmp-index": 564}, {"router": "mx4.lab.office.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-0/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx4-mx3", "circuits": [], "snmp-index": 559}, {"router": "mx4.lab.office.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-0/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx4-mx3", "circuits": [], "snmp-index": 560}, {"router": "mx4.lab.office.geant.net", "name": "ae31", "bundle": [], "bundle-parents": ["xe-0/1/6", "xe-0/1/7"], "description": "LAG | TRUNK | QFX1 | AE14 | MONITOR ", "circuits": [], "snmp-index": 578}, {"router": "mx4.lab.office.geant.net", "name": "ae31.2000", "bundle": [], "bundle-parents": ["xe-0/1/6", "xe-0/1/7"], "description": "VLAN 2000 | INET0 | QFX1", "circuits": [], "snmp-index": 587}, {"router": "mx4.lab.office.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 527}, {"router": "mx2.lab.office.geant.net", "name": "et-3/0/4", "bundle": ["ae8"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE | MPC10E 400G Port A", "circuits": [], "snmp-index": 1059}, {"router": "mx2.lab.office.geant.net", "name": "xe-8/0/1", "bundle": ["ae10"], "bundle-parents": [], "description": "To Lab MX80-1 - xe-0/0/0 part of ae10", "circuits": [], "snmp-index": 769}, {"router": "mx2.lab.office.geant.net", "name": "xe-8/0/2", "bundle": ["ae10"], "bundle-parents": [], "description": "To Lab MX80-1 - xe-0/0/1 part of ae10", "circuits": [], "snmp-index": 770}, {"router": "mx2.lab.office.geant.net", "name": "xe-8/0/3", "bundle": ["ae3"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | MX1-MX2", "circuits": [], "snmp-index": 822}, {"router": "mx2.lab.office.geant.net", "name": "xe-8/0/4", "bundle": ["ae4"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | MX2-MX3 | 10G", "circuits": [], "snmp-index": 829}, {"router": "mx2.lab.office.geant.net", "name": "xe-8/0/5", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 SRF0000001 | QFX2 xe-1/0/0", "circuits": [], "snmp-index": 851}, {"router": "mx2.lab.office.geant.net", "name": "xe-8/0/6", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 SRF0000001 | QFX2 xe-0/0/0", "circuits": [], "snmp-index": 852}, {"router": "mx2.lab.office.geant.net", "name": "xe-8/0/8", "bundle": ["ae31"], "bundle-parents": [], "description": "QFX1 0/0/9", "circuits": [], "snmp-index": 964}, {"router": "mx2.lab.office.geant.net", "name": "xe-8/0/9", "bundle": ["ae31"], "bundle-parents": [], "description": "QFX1 1/0/9", "circuits": [], "snmp-index": 965}, {"router": "mx2.lab.office.geant.net", "name": "ge-8/2/0", "bundle": [], "bundle-parents": [], "description": "To sw1.lab.office.geant.net ge-0/0/2", "circuits": [], "snmp-index": 1088}, {"router": "mx2.lab.office.geant.net", "name": "ge-8/2/0.100", "bundle": [], "bundle-parents": [], "description": "AS20965 Peering with Quagga VM", "circuits": [], "snmp-index": 1119}, {"router": "mx2.lab.office.geant.net", "name": "ge-8/2/0.333", "bundle": [], "bundle-parents": [], "description": "AS21320 Peering with Quagga VM", "circuits": [], "snmp-index": 1120}, {"router": "mx2.lab.office.geant.net", "name": "ge-8/2/0.501", "bundle": [], "bundle-parents": [], "description": "BIRD-4", "circuits": [], "snmp-index": 1121}, {"router": "mx2.lab.office.geant.net", "name": "ge-8/2/0.902", "bundle": [], "bundle-parents": [], "description": "DCN - Transport site 2", "circuits": [], "snmp-index": 1122}, {"router": "mx2.lab.office.geant.net", "name": "ge-8/2/0.997", "bundle": [], "bundle-parents": [], "description": "VLAN for access to London (via CH firewall)", "circuits": [], "snmp-index": 1123}, {"router": "mx2.lab.office.geant.net", "name": "ge-8/2/0.999", "bundle": [], "bundle-parents": [], "description": "Lab Tools Network", "circuits": [], "snmp-index": 1124}, {"router": "mx2.lab.office.geant.net", "name": "ge-8/2/1", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE GTS SRF0000001 | TAAS CONTROL - GTS.SW2 P19 - DUMMY FOR LAB", "circuits": [], "snmp-index": 1079}, {"router": "mx2.lab.office.geant.net", "name": "ge-8/2/1.100", "bundle": [], "bundle-parents": [], "description": "Testo", "circuits": [], "snmp-index": 1126}, {"router": "mx2.lab.office.geant.net", "name": "ge-8/2/2", "bundle": [], "bundle-parents": [], "description": "To EUMETSAT SPOC POC ADVA 2", "circuits": [], "snmp-index": 1080}, {"router": "mx2.lab.office.geant.net", "name": "gr-9/0/0.0", "bundle": [], "bundle-parents": [], "description": "Tunnel to Fortigate CH", "circuits": [], "snmp-index": 1209}, {"router": "mx2.lab.office.geant.net", "name": "lt-9/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", "circuits": [], "snmp-index": 1206}, {"router": "mx2.lab.office.geant.net", "name": "lt-9/0/0.12", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN | MDVPN CoC, GN PE to VPN-Proxy for BGP-LU", "circuits": [], "snmp-index": 1210}, {"router": "mx2.lab.office.geant.net", "name": "lt-9/0/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #GEANT_IBGP_Peering-geneva| GN PE to VPN-Proxy for IBGP ", "circuits": [], "snmp-index": 1211}, {"router": "mx2.lab.office.geant.net", "name": "lt-9/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", "circuits": [], "snmp-index": 1212}, {"router": "mx2.lab.office.geant.net", "name": "lt-9/0/0.17", "bundle": [], "bundle-parents": [], "description": "Peering with vm_vrf_3000 / EVPN", "circuits": [], "snmp-index": 1213}, {"router": "mx2.lab.office.geant.net", "name": "lt-9/0/0.18", "bundle": [], "bundle-parents": [], "description": "peering with VRF_DC_3002", "circuits": [], "snmp-index": 1214}, {"router": "mx2.lab.office.geant.net", "name": "lt-9/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 1215}, {"router": "mx2.lab.office.geant.net", "name": "lt-9/0/0.71", "bundle": [], "bundle-parents": [], "description": "Peering with RE", "circuits": [], "snmp-index": 1216}, {"router": "mx2.lab.office.geant.net", "name": "lt-9/0/0.81", "bundle": [], "bundle-parents": [], "description": "Peering with RE", "circuits": [], "snmp-index": 1217}, {"router": "mx2.lab.office.geant.net", "name": "et-9/0/2", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | MX2-MX1", "circuits": [], "snmp-index": 745}, {"router": "mx2.lab.office.geant.net", "name": "et-9/0/5", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | MX2-MX3", "circuits": [], "snmp-index": 744}, {"router": "mx2.lab.office.geant.net", "name": "et-9/1/2", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MX2-MX5", "circuits": [], "snmp-index": 748}, {"router": "mx2.lab.office.geant.net", "name": "et-9/1/5", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MX2-MX5", "circuits": [], "snmp-index": 749}, {"router": "mx2.lab.office.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["et-9/0/2"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx2-mx1", "circuits": [], "snmp-index": 740}, {"router": "mx2.lab.office.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["et-9/0/2"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx2-mx1", "circuits": [], "snmp-index": 741}, {"router": "mx2.lab.office.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-9/0/5"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx2-mx3", "circuits": [], "snmp-index": 742}, {"router": "mx2.lab.office.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-9/0/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx2-mx3", "circuits": [], "snmp-index": 743}, {"router": "mx2.lab.office.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-9/1/2", "et-9/1/5"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx2-mx5", "circuits": [], "snmp-index": 984}, {"router": "mx2.lab.office.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-9/1/2", "et-9/1/5"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx2-mx5", "circuits": [], "snmp-index": 985}, {"router": "mx2.lab.office.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["xe-8/0/3"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx2-mx1", "circuits": [], "snmp-index": 836}, {"router": "mx2.lab.office.geant.net", "name": "ae3.0", "bundle": [], "bundle-parents": ["xe-8/0/3"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx2-mx1", "circuits": [], "snmp-index": 838}, {"router": "mx2.lab.office.geant.net", "name": "ae4", "bundle": [], "bundle-parents": ["xe-8/0/4"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx2-mx3 | 10G", "circuits": [], "snmp-index": 839}, {"router": "mx2.lab.office.geant.net", "name": "ae4.0", "bundle": [], "bundle-parents": ["xe-8/0/4"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx2-mx3 | 10G", "circuits": [], "snmp-index": 841}, {"router": "mx2.lab.office.geant.net", "name": "ae10", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "To NREN MX80-1 (Lab) ae10", "circuits": [], "snmp-index": 754}, {"router": "mx2.lab.office.geant.net", "name": "ae10.103", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "SRV_GLOBAL CUSTOMER HEANET - R&E", "circuits": [], "snmp-index": 787}, {"router": "mx2.lab.office.geant.net", "name": "ae10.104", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "SRV_GLOBAL CUSTOMER GARR - R&E", "circuits": [], "snmp-index": 788}, {"router": "mx2.lab.office.geant.net", "name": "ae10.105", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "SRV_GLOBAL CUSTOMER FCCN - R&E", "circuits": [], "snmp-index": 789}, {"router": "mx2.lab.office.geant.net", "name": "ae10.203", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "SRV_IAS HEANET SRF99??? | ASN1213 |", "circuits": [], "snmp-index": 790}, {"router": "mx2.lab.office.geant.net", "name": "ae10.205", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "SRV_IAS FCCN SRF99??? | ASN1930 |", "circuits": [], "snmp-index": 961}, {"router": "mx2.lab.office.geant.net", "name": "ae10.304", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "SRV_LHCONE CUSTOMER GARR - LHCONE", "circuits": [], "snmp-index": 792}, {"router": "mx2.lab.office.geant.net", "name": "ae10.620", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "SRV_MDVPN CUSTOMER FCCN SRF992xxx515 | MD VPN CoC - FCCN", "circuits": [], "snmp-index": 802}, {"router": "mx2.lab.office.geant.net", "name": "ae10.666", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "GTS-TEST-VC-endpoint", "circuits": [], "snmp-index": 793}, {"router": "mx2.lab.office.geant.net", "name": "ae10.700", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "To Fake AS123 for IAS", "circuits": [], "snmp-index": 794}, {"router": "mx2.lab.office.geant.net", "name": "ae10.779", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "test interface ", "circuits": [], "snmp-index": 797}, {"router": "mx2.lab.office.geant.net", "name": "ae10.1000", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "SRV_L2CIRCUIT CUSTOMER HEANET | for TAT Test", "circuits": [], "snmp-index": 799}, {"router": "mx2.lab.office.geant.net", "name": "ae10.2102", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "To EUMETSAT Portugal (via FCCN)", "circuits": [], "snmp-index": 800}, {"router": "mx2.lab.office.geant.net", "name": "ae30", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "LAG INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | QFX2(FRA)", "circuits": [], "snmp-index": 694}, {"router": "mx2.lab.office.geant.net", "name": "ae30.991", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "SRV_GLOBAL INFRASTRUCTURE Access #CORIANT_TNMS_MANAGEMENT_FRA_DE | CORIANT TNMS MANAGEMENT", "circuits": [], "snmp-index": 981}, {"router": "mx2.lab.office.geant.net", "name": "ae30.2001", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #ESXI_Management_Fra | ESXI MANAGEMENT", "circuits": [], "snmp-index": 986}, {"router": "mx2.lab.office.geant.net", "name": "ae30.3000", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VM_DataNetwork_Fra| VM DATA NETWORK", "circuits": [], "snmp-index": 1018}, {"router": "mx2.lab.office.geant.net", "name": "ae30.3001", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_FRANKFURT_VRF_VLAN3001 | NAGIOS gateway for taas-control VRF", "circuits": [], "snmp-index": 987}, {"router": "mx2.lab.office.geant.net", "name": "ae30.3002", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-latency-network-fra-de| Latency network", "circuits": [], "snmp-index": 989}, {"router": "mx2.lab.office.geant.net", "name": "ae30.3003", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-throughput-network-fra-de | Throughput network", "circuits": [], "snmp-index": 990}, {"router": "mx2.lab.office.geant.net", "name": "ae30.3004", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_FRANKFURT_VRF_VLAN3004 | RANCID gateway for taas-control VRF", "circuits": [], "snmp-index": 991}, {"router": "mx2.lab.office.geant.net", "name": "ae30.3005", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "SRV_VPLS INFRASTRUCTURE RARE P4 #RARE_Gateway | pfSense Gateway for RARE P4 Box VPLS", "circuits": [], "snmp-index": 992}, {"router": "mx2.lab.office.geant.net", "name": "ae30.3006", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_GTS_IMS_MEDIATION_FRANKFURT | IMS Mediation Gateway for taas-control VRF", "circuits": [], "snmp-index": 993}, {"router": "mx2.lab.office.geant.net", "name": "ae30.3007", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX_FRA_DE | Infoblox vFRA", "circuits": [], "snmp-index": 994}, {"router": "mx2.lab.office.geant.net", "name": "ae30.3008", "bundle": [], "bundle-parents": ["xe-8/0/5", "xe-8/0/6"], "description": "SRV_GLOBAL INFRASTRUCTURE Access link #INFOBLOX_DNS_FRA_DE | TEST - Infoblox GRID /// NMAAS IS-IS Listener", "circuits": [], "snmp-index": 995}, {"router": "mx2.lab.office.geant.net", "name": "ae31", "bundle": [], "bundle-parents": ["xe-8/0/8", "xe-8/0/9"], "description": "LAG | TRUNK | QFX1 | AE12 | MONITOR ", "circuits": [], "snmp-index": 1063}, {"router": "mx2.lab.office.geant.net", "name": "ae31.2000", "bundle": [], "bundle-parents": ["xe-8/0/8", "xe-8/0/9"], "description": "VLAN 2000 | INET0 | QFX1", "circuits": [], "snmp-index": 1064}, {"router": "mx2.lab.office.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 511}, {"router": "mx2.lab.office.geant.net", "name": "irb.260", "bundle": [], "bundle-parents": [], "description": "SRV_TAAS INFRASTRUCTURE GTS SRF0000001 | TAAS CONTROL", "circuits": [], "snmp-index": 820}, {"router": "mx2.lab.office.geant.net", "name": "irb.3000", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | VM DATA NETWORK", "circuits": [], "snmp-index": 834}, {"router": "mx2.lab.office.geant.net", "name": "irb.3001", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_FRANKFURT_VRF_VLAN3001_LOGICAL_INTERFACE | NAGIOS gateway for taas-control VRF", "circuits": [], "snmp-index": 966}, {"router": "mx2.lab.office.geant.net", "name": "irb.3002", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-latency-testvm_latency | Perfsonar test VMs - latency measurement VLAN", "circuits": [], "snmp-index": 760}, {"router": "mx2.lab.office.geant.net", "name": "irb.3003", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-latency-testvm_throughput | Perfsonar test VMs - throughput measurement VLAN", "circuits": [], "snmp-index": 803}, {"router": "mx2.lab.office.geant.net", "name": "irb.3004", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_FRANKFURT_VRF_VLAN3004_LOGICAL_INTERFACE | RANCID gateway for taas-control VRF", "circuits": [], "snmp-index": 1019}, {"router": "mx2.lab.office.geant.net", "name": "irb.3006", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_GTS_IMS_MEDIATION_FRANKFURT_LOGiCAL_INTERFACE | IMS Mediation Gateway for taas-control VRF", "circuits": [], "snmp-index": 1020}, {"router": "mx2.lab.office.geant.net", "name": "lt-9/0/0.21", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF16031 | VPN-Proxy to GEANT PE for BGP-LU peering", "circuits": [], "snmp-index": 1218}, {"router": "mx2.lab.office.geant.net", "name": "lt-9/0/0.31", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE MDVPN SRF16031 | VPN-Proxy to GEANT PE for IBGP", "circuits": [], "snmp-index": 1219}, {"router": "mx2.lab.office.geant.net", "name": "ae10.360", "bundle": [], "bundle-parents": ["xe-8/0/1", "xe-8/0/2"], "description": "SRV_MDVPN CUSTOMER HEANET #HEANET-GN-PRACE-VPN-Proxy-MX2.LAB-L3VPN | VPN-Proxy to NREN CE", "circuits": [], "snmp-index": 1029}, {"router": "mx5.lab.office.geant.net", "name": "et-0/0/4", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE | MPC10E 400G Port A", "circuits": [], "snmp-index": 526}, {"router": "mx5.lab.office.geant.net", "name": "et-0/1/4", "bundle": ["ae10"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE | MPC10E 400G Port B", "circuits": [], "snmp-index": 528}, {"router": "mx5.lab.office.geant.net", "name": "et-2/0/0", "bundle": ["ae1"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | MX5-MX1", "circuits": [], "snmp-index": 592}, {"router": "mx5.lab.office.geant.net", "name": "xe-3/0/0", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 SRF0000001 | QFX5 xe-0/0/0", "circuits": [], "snmp-index": 631}, {"router": "mx5.lab.office.geant.net", "name": "et-3/1/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MX5-MX2", "circuits": [], "snmp-index": 635}, {"router": "mx5.lab.office.geant.net", "name": "xe-3/2/0", "bundle": [], "bundle-parents": [], "description": "hard loop", "circuits": [], "snmp-index": 636}, {"router": "mx5.lab.office.geant.net", "name": "xe-3/2/0.0", "bundle": [], "bundle-parents": [], "description": "hard loop logical", "circuits": [], "snmp-index": 795}, {"router": "mx5.lab.office.geant.net", "name": "et-3/3/0", "bundle": ["ae2"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MX5-MX2", "circuits": [], "snmp-index": 640}, {"router": "mx5.lab.office.geant.net", "name": "lt-4/0/0", "bundle": [], "bundle-parents": [], "description": "TUN INFRASTRUCTURE ACCESS MDVPN | MDVPN VRR", "circuits": [], "snmp-index": 819}, {"router": "mx5.lab.office.geant.net", "name": "lt-4/0/0.13", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #VRR-1 | MDVPN VRR", "circuits": [], "snmp-index": 824}, {"router": "mx5.lab.office.geant.net", "name": "lt-4/0/0.14", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #VRR-2 | MDVPN VRR", "circuits": [], "snmp-index": 825}, {"router": "mx5.lab.office.geant.net", "name": "lt-4/0/0.16", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE_INTERCONNECT Side", "circuits": [], "snmp-index": 826}, {"router": "mx5.lab.office.geant.net", "name": "lt-4/0/0.18", "bundle": [], "bundle-parents": [], "description": "peering with VRF_DC_3002", "circuits": [], "snmp-index": 828}, {"router": "mx5.lab.office.geant.net", "name": "lt-4/0/0.61", "bundle": [], "bundle-parents": [], "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", "circuits": [], "snmp-index": 829}, {"router": "mx5.lab.office.geant.net", "name": "lt-4/0/0.81", "bundle": [], "bundle-parents": [], "description": "Peering with RE", "circuits": [], "snmp-index": 831}, {"router": "mx5.lab.office.geant.net", "name": "xe-4/0/1", "bundle": ["ae30"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 SRF0000001 |", "circuits": [], "snmp-index": 606}, {"router": "mx5.lab.office.geant.net", "name": "xe-4/0/2", "bundle": ["ae3"], "bundle-parents": [], "description": "To R610-1 10G-nic-1 | trex-1 ens192f0, part of bond0", "circuits": [], "snmp-index": 607}, {"router": "mx5.lab.office.geant.net", "name": "xe-4/0/3", "bundle": [], "bundle-parents": [], "description": "To R610-1 10G-nic-2 | trex-1 ens192f1 (10.88.88.1/24)", "circuits": [], "snmp-index": 608}, {"router": "mx5.lab.office.geant.net", "name": "xe-4/0/8", "bundle": ["ae31"], "bundle-parents": [], "description": "QFX1 0/0/12", "circuits": [], "snmp-index": 613}, {"router": "mx5.lab.office.geant.net", "name": "xe-4/0/9", "bundle": ["ae31"], "bundle-parents": [], "description": "QFX1 1/0/12", "circuits": [], "snmp-index": 614}, {"router": "mx5.lab.office.geant.net", "name": "ge-4/2/0", "bundle": [], "bundle-parents": [], "description": "To Lab Switch SW3", "circuits": [], "snmp-index": 844}, {"router": "mx5.lab.office.geant.net", "name": "ge-4/2/0.207", "bundle": [], "bundle-parents": [], "description": "Elastiflow", "circuits": [], "snmp-index": 845}, {"router": "mx5.lab.office.geant.net", "name": "ge-4/2/0.502", "bundle": [], "bundle-parents": [], "description": "BIRD-3", "circuits": [], "snmp-index": 846}, {"router": "mx5.lab.office.geant.net", "name": "ge-4/2/0.900", "bundle": [], "bundle-parents": [], "description": "DCN - TNMS private network", "circuits": [], "snmp-index": 847}, {"router": "mx5.lab.office.geant.net", "name": "ge-4/2/0.901", "bundle": [], "bundle-parents": [], "description": "DCN - Transport site 1", "circuits": [], "snmp-index": 848}, {"router": "mx5.lab.office.geant.net", "name": "ge-4/2/0.903", "bundle": [], "bundle-parents": [], "description": "DCN - Transport site 3", "circuits": [], "snmp-index": 849}, {"router": "mx5.lab.office.geant.net", "name": "ge-4/2/1", "bundle": [], "bundle-parents": [], "description": "To EUMETSAT SPOC POC ADVA 1", "circuits": [], "snmp-index": 835}, {"router": "mx5.lab.office.geant.net", "name": "ge-4/2/2", "bundle": [], "bundle-parents": [], "description": "Ex4300 test", "circuits": [], "snmp-index": 836}, {"router": "mx5.lab.office.geant.net", "name": "et-5/2/0", "bundle": ["ae0"], "bundle-parents": [], "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | MX5-MX4", "circuits": [], "snmp-index": 604}, {"router": "mx5.lab.office.geant.net", "name": "ae0", "bundle": [], "bundle-parents": ["et-5/2/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx5-mx4", "circuits": [], "snmp-index": 672}, {"router": "mx5.lab.office.geant.net", "name": "ae0.0", "bundle": [], "bundle-parents": ["et-5/2/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx5-mx4", "circuits": [], "snmp-index": 673}, {"router": "mx5.lab.office.geant.net", "name": "ae1", "bundle": [], "bundle-parents": ["et-2/0/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx5-mx1", "circuits": [], "snmp-index": 674}, {"router": "mx5.lab.office.geant.net", "name": "ae1.0", "bundle": [], "bundle-parents": ["et-2/0/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx5-mx1", "circuits": [], "snmp-index": 675}, {"router": "mx5.lab.office.geant.net", "name": "ae2", "bundle": [], "bundle-parents": ["et-3/1/0", "et-3/3/0"], "description": "LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx5-mx2", "circuits": [], "snmp-index": 676}, {"router": "mx5.lab.office.geant.net", "name": "ae2.0", "bundle": [], "bundle-parents": ["et-3/1/0", "et-3/3/0"], "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | mx2-mx5", "circuits": [], "snmp-index": 677}, {"router": "mx5.lab.office.geant.net", "name": "ae3", "bundle": [], "bundle-parents": ["xe-4/0/2"], "description": "To R610-1 | trex-1 bond0 (10.150.1.1/24)", "circuits": [], "snmp-index": 678}, {"router": "mx5.lab.office.geant.net", "name": "ae30", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-4/0/1"], "description": "LAG INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | QFX5(PAR)", "circuits": [], "snmp-index": 680}, {"router": "mx5.lab.office.geant.net", "name": "ae30.991", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-4/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE Access #CORIANT_TNMS_PAR_FR | CORIANT TNMS MANAGEMENT", "circuits": [], "snmp-index": 681}, {"router": "mx5.lab.office.geant.net", "name": "ae30.2001", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-4/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #ESXI_Management_Par| ESXI MANAGEMENT", "circuits": [], "snmp-index": 682}, {"router": "mx5.lab.office.geant.net", "name": "ae30.3000", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-4/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VM_DataNetwork_Par | VM DATA NETWORK", "circuits": [], "snmp-index": 683}, {"router": "mx5.lab.office.geant.net", "name": "ae30.3001", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-4/0/1"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_NAGIOS_PAR_FR | NAGIOS gateway for taas-control VRF", "circuits": [], "snmp-index": 684}, {"router": "mx5.lab.office.geant.net", "name": "ae30.3002", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-4/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-latency-network-par-fr | Latency network", "circuits": [], "snmp-index": 685}, {"router": "mx5.lab.office.geant.net", "name": "ae30.3003", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-4/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-throughput-network-par-fr | Throughput network", "circuits": [], "snmp-index": 686}, {"router": "mx5.lab.office.geant.net", "name": "ae30.3004", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-4/0/1"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_RANCID_PAR_FR | RANCID gateway for taas-control VRF", "circuits": [], "snmp-index": 687}, {"router": "mx5.lab.office.geant.net", "name": "ae30.3006", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-4/0/1"], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_IMS_MEDIATION_PAR_FR | IMS Mediation Gateway for taas-control VRF", "circuits": [], "snmp-index": 688}, {"router": "mx5.lab.office.geant.net", "name": "ae30.3007", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-4/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX_VPAR_PAR_FR | Infoblox vPAR", "circuits": [], "snmp-index": 689}, {"router": "mx5.lab.office.geant.net", "name": "ae30.3008", "bundle": [], "bundle-parents": ["xe-3/0/0", "xe-4/0/1"], "description": "SRV_GLOBAL INFRASTRUCTURE Access link DNS #INFOBLOX_TEST_PAR_FR | TEST - Infoblox GRID /// NMAAS IS-IS Listener", "circuits": [], "snmp-index": 690}, {"router": "mx5.lab.office.geant.net", "name": "ae31", "bundle": [], "bundle-parents": ["xe-4/0/8", "xe-4/0/9"], "description": "LAG | TRUNK | QFX1 | AE14 | MONITOR ", "circuits": [], "snmp-index": 807}, {"router": "mx5.lab.office.geant.net", "name": "ae31.2000", "bundle": [], "bundle-parents": ["xe-4/0/8", "xe-4/0/9"], "description": "VLAN 2000 | INET0 | QFX1", "circuits": [], "snmp-index": 812}, {"router": "mx5.lab.office.geant.net", "name": "dsc.0", "bundle": [], "bundle-parents": [], "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", "circuits": [], "snmp-index": 692}, {"router": "mx5.lab.office.geant.net", "name": "irb.3000", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | VM DATA NETWORK", "circuits": [], "snmp-index": 694}, {"router": "mx5.lab.office.geant.net", "name": "irb.3001", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_FRANKFURT_VRF_VLAN3001_LOGICAL_INTERFACE | NAGIOS gateway for taas-control VRF", "circuits": [], "snmp-index": 695}, {"router": "mx5.lab.office.geant.net", "name": "irb.3002", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-latency-testvm_latency | Perfsonar test VMs - latency measurement VLAN", "circuits": [], "snmp-index": 696}, {"router": "mx5.lab.office.geant.net", "name": "irb.3003", "bundle": [], "bundle-parents": [], "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-latency-testvm_throughput | Perfsonar test VMs - throughput measurement VLAN", "circuits": [], "snmp-index": 697}, {"router": "mx5.lab.office.geant.net", "name": "irb.3004", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_CONTROL_FRANKFURT_VRF_VLAN3004_LOGICAL_INTERFACE | RANCID gateway for taas-control VRF", "circuits": [], "snmp-index": 698}, {"router": "mx5.lab.office.geant.net", "name": "irb.3006", "bundle": [], "bundle-parents": [], "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS_GTS_IMS_MEDIATION_FRANKFURT_LOGiCAL_INTERFACE | IMS Mediation Gateway for taas-control VRF", "circuits": [], "snmp-index": 699}, {"router": "mx5.lab.office.geant.net", "name": "lt-4/0/0.31", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN | VRR to GEANT", "circuits": [], "snmp-index": 832}, {"router": "mx5.lab.office.geant.net", "name": "lt-4/0/0.41", "bundle": [], "bundle-parents": [], "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN | VRR to GEANT", "circuits": [], "snmp-index": 833}]
\ No newline at end of file
+[
+    {
+        "router": "mx1.ams.nl.geant.net",
+        "name": "ae1",
+        "bundle": [],
+        "bundle-parents": [],
+        "description": "blah blah",
+        "circuits": [
+            {
+                "id": 12112,
+                "name": "something",
+                "type": "SERVICE",
+                "status": "operational"
+            }
+        ],
+        "snmp-index": 1211
+    },
+    {
+        "router": "mx1.fra.de.geant.net",
+        "name": "ae10",
+        "bundle": [],
+        "bundle-parents": [],
+        "description": "blah blah",
+        "circuits": [
+            {
+                "id": 50028,
+                "name": "something",
+                "type": "SERVICE",
+                "status": "operational"
+            }
+        ],
+        "snmp-index": 1006
+    },
+    {
+        "router": "mx1.fra.de.geant.net",
+        "name": "ae99",
+        "bundle": [],
+        "bundle-parents": [],
+        "description": "blah blah",
+        "circuits": [
+            {
+                "id": 50028,
+                "name": "something",
+                "type": "SERVICE",
+                "status": "operational"
+            }
+        ],
+        "snmp-index": 9999
+    }
+]
diff --git a/test/test_api.py b/test/test_api.py
new file mode 100644
index 0000000000000000000000000000000000000000..0a647feed8c14f664ae78a5074f68bdd1835a8d1
--- /dev/null
+++ b/test/test_api.py
@@ -0,0 +1,38 @@
+import json
+import os
+
+import jsonschema
+import pytest
+import responses
+
+import brian_polling_manager
+from brian_polling_manager.api import VERSION_SCHEMA
+from brian_polling_manager.main import REFRESH_RESULT_SCHEMA
+
+
+@pytest.fixture
+def client(config_filename, mocked_sensu, mocked_inventory):
+    os.environ['CONFIG_FILENAME'] = config_filename
+    with brian_polling_manager.create_app().test_client() as c:
+        yield c
+
+
+def test_version(client):
+    rv = client.get(
+        '/api/version',
+        headers={'Accept': ['application/json']})
+    assert rv.status_code == 200
+    assert rv.is_json
+    response_data = json.loads(rv.data.decode('utf-8'))
+    jsonschema.validate(response_data, VERSION_SCHEMA)
+
+
+@responses.activate
+def test_update(client):
+    rv = client.get(
+        '/api/update',
+        headers={'Accept': ['application/json']})
+    assert rv.status_code == 200
+    assert rv.is_json
+    response_data = json.loads(rv.data.decode('utf-8'))
+    jsonschema.validate(response_data, REFRESH_RESULT_SCHEMA)
diff --git a/test/test_e2e.py b/test/test_e2e.py
index 61d48375e9cd69f2a74ab9e99fbfc6f27c61f4b9..7486e959f447d984528a2f9e44f9e34b7c79b669 100644
--- a/test/test_e2e.py
+++ b/test/test_e2e.py
@@ -1,22 +1,15 @@
-import json
-import tempfile
-
 from click.testing import CliRunner
 import responses
 
-from brian_polling_manager import cli
+from brian_polling_manager import main
 
 
 @responses.activate
-def test_run_flashtest(config, mocked_sensu, mocked_inventory):
-
-    with tempfile.NamedTemporaryFile(mode='w') as f:
-        f.write(json.dumps(config))
-        f.flush()
-
-        runner = CliRunner()
-        result = runner.invoke(
-            cli.main,
-            ['--config', f.name, '--force']
-        )
-        assert result.exit_code == 0
+def test_run_flashtest(config_filename, mocked_sensu, mocked_inventory):
+
+    runner = CliRunner()
+    result = runner.invoke(
+        main.cli,
+        ['--config', config_filename, '--force']
+    )
+    assert result.exit_code == 0
diff --git a/tox.ini b/tox.ini
index 06877248fcf65034984f4506c371c62158cf9589..88439ca5e63e6c272d36794aad7324d44ed927e4 100644
--- a/tox.ini
+++ b/tox.ini
@@ -13,7 +13,7 @@ commands =
     coverage xml
     coverage html
     coverage report
-    coverage report --fail-under 75
+    coverage report --fail-under 80
     flake8
     sphinx-build -M html docs/source docs/build